From c57b5fe17675d9bf8c4b740511297b34531a3a23 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Wed, 15 Jan 2014 01:14:17 +0100 Subject: [PATCH] Fix tix-build(1) not preserving PKG_CONFIG_LIBDIR in PKG_CONFIG_FOR_BUILD. --- tix/tix-build.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tix/tix-build.cpp b/tix/tix-build.cpp index fae8044e..f3f128bc 100644 --- a/tix/tix-build.cpp +++ b/tix/tix-build.cpp @@ -134,6 +134,7 @@ void emit_pkg_config_wrapper(metainfo_t* minfo) fprint_shell_variable_assignment(pkg_config_for_build, "PKG_CONFIG_PATH", getenv("PKG_CONFIG_PATH")); fprint_shell_variable_assignment(pkg_config_for_build, "PKG_CONFIG_SYSROOT_DIR", getenv("PKG_CONFIG_SYSROOT_DIR")); fprint_shell_variable_assignment(pkg_config_for_build, "PKG_CONFIG_FOR_BUILD", getenv("PKG_CONFIG_FOR_BUILD")); + fprint_shell_variable_assignment(pkg_config_for_build, "PKG_CONFIG_LIBDIR", getenv("PKG_CONFIG_LIBDIR")); fprintf(pkg_config_for_build, "exec ${PKG_CONFIG:-pkg-config} \"$@\"\n"); fflush(pkg_config_for_build); fchmod_plus_x(fileno(pkg_config_for_build));