diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-12-17 14:56:27 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-12-17 14:56:27 +0000 |
commit | a98e2a0f270c0989061c73810d7ec32ba3d105c3 (patch) | |
tree | 05dfd1bb7ce13c8bc18ebac2ff52fdbbf27b2932 | |
parent | a66298ef8af675c1940b4e697074e45dc17f8415 (diff) | |
download | upstream-a98e2a0f270c0989061c73810d7ec32ba3d105c3.tar.gz upstream-a98e2a0f270c0989061c73810d7ec32ba3d105c3.tar.bz2 upstream-a98e2a0f270c0989061c73810d7ec32ba3d105c3.zip |
prevent pkg-config from looking for .pc files on the host system
SVN-Revision: 5820
-rw-r--r-- | include/package.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package.mk b/include/package.mk index 1edac0e0ac..1b69cf25d6 100644 --- a/include/package.mk +++ b/include/package.mk @@ -296,7 +296,7 @@ define Build/Configure/Default CXXFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ - PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \ + PKG_CONFIG_LIBDIR="$(STAGING_DIR)/usr/lib/pkgconfig" \ $(2) \ $(PKG_CONFIG_PATH)/configure \ --target=$(GNU_TARGET_NAME) \ |