diff options
author | Will Newton <will.newton@gmail.com> | 2009-08-25 13:03:33 +0100 |
---|---|---|
committer | Will Newton <will.newton@gmail.com> | 2009-09-20 19:34:27 +0100 |
commit | 51173980cdbc89832db17765209e0ccef5be5cf8 (patch) | |
tree | efb373d34e97b65b19e2e1076cbd51d738d4335f /package/Makefile.in | |
parent | bf5e693d75890f5642e1679af40a687b9189de9c (diff) |
package/Makefile.in: Use appropriate paths for host pkg-config.
PKG_CONFIG_PATH adds a path to the pkg-config search path, but this is not
enough when we are building host tools - the host pkg-config default path
is still used, and this will pick up .pc files in the staging_dir tree.
PKG_CONFIG_LIBDIR overrides the pkg-config default path and ensures only
host .pc files are found. This fixes a pango build failure when building
for the host with cairo PNG support enabled.
Signed-off-by: Will Newton <will.newton@gmail.com>
Diffstat (limited to 'package/Makefile.in')
-rw-r--r-- | package/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index 1c2192488..9852be254 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -237,7 +237,7 @@ TARGET_CONFIGURE_OPTS=PATH=$(TARGET_PATH) \ DEFAULT_LINKER="$(TARGET_LD)" \ PKG_CONFIG_SYSROOT_DIR="$(STAGING_DIR)" \ PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \ - PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig$(PKG_CONFIG_PATH)" \ + PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig:$(PKG_CONFIG_PATH)" \ STAGING_DIR="$(STAGING_DIR)" TARGET_CONFIGURE_ENV=\ @@ -282,9 +282,12 @@ HOST_CONFIGURE_OPTS=PATH=$(HOST_PATH) \ ORIGINAL_NM_FOR_TARGET="$(TARGET_NM)" \ ORIGINAL_OBJDUMP_FOR_TARGET="$(TARGET_OBJDUMP)" \ PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \ - PKG_CONFIG_PATH="$(HOST_DIR)/usr/lib/pkgconfig$(PKG_CONFIG_PATH)" + PKG_CONFIG_LIBDIR="$(HOST_DIR)/usr/lib/pkgconfig" + +HOST_MAKE_ENV=PATH=$(HOST_PATH) \ + PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \ + PKG_CONFIG_LIBDIR="$(HOST_DIR)/usr/lib/pkgconfig" -HOST_MAKE_ENV=PATH=$(HOST_PATH) ####################################################################### # settings we need to pass to configure |