diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-10 19:26:46 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-10 19:26:46 +0000 |
commit | 0096c48024a9d13faa317bb88a421dc320b3ad3c (patch) | |
tree | ba0d73cbe900c9020b0d1dd530c3a7ffce489a09 /tools | |
parent | 66c9e4f1434690cc06294aa774ab867493079890 (diff) | |
download | upstream-0096c48024a9d13faa317bb88a421dc320b3ad3c.tar.gz upstream-0096c48024a9d13faa317bb88a421dc320b3ad3c.tar.bz2 upstream-0096c48024a9d13faa317bb88a421dc320b3ad3c.zip |
pkg-config: link statically
SVN-Revision: 33102
Diffstat (limited to 'tools')
-rw-r--r-- | tools/pkg-config/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/pkg-config/Makefile b/tools/pkg-config/Makefile index e7d2982f7f..fbdc1d0db7 100644 --- a/tools/pkg-config/Makefile +++ b/tools/pkg-config/Makefile @@ -15,9 +15,10 @@ PKG_MD5SUM:=a3270bab3f4b69b7dc6dbdacbcae9745 include $(INCLUDE_DIR)/host-build.mk +HOST_LDFLAGS += -static + define Host/Install - $(MAKE) -C $(HOST_BUILD_DIR) \ - install + $(MAKE) -C $(HOST_BUILD_DIR) install AM_LDFLAGS="-all-static" mv $(STAGING_DIR_HOST)/bin/pkg-config $(STAGING_DIR_HOST)/bin/pkg-config.real $(INSTALL_BIN) ./files/pkg-config $(STAGING_DIR_HOST)/bin/pkg-config endef |