summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-06-19 16:30:04 -0700
committerJohn Stebbins <[email protected]>2018-06-19 16:56:04 -0700
commitaabf47505926ab098f5f31bcf8ef14f044fea190 (patch)
tree931bb128cc4165beb01feb77be06034e99a5eebd
parente401ec7f54cf6dc7659a07b31093b3cd92f800c3 (diff)
LinGui: don't override PKG_CONFIG_PATH
Add to the front, but don't override what was there. (cherry picked from commit db23f90fbe195361e1f147b392f76bda787bf95f)
-rw-r--r--gtk/module.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/module.rules b/gtk/module.rules
index 64eef8ac3..d4242cf5a 100644
--- a/gtk/module.rules
+++ b/gtk/module.rules
@@ -15,7 +15,7 @@ $(GTK.CONFIGURE.stamp): $(GTK.src/)configure.ac $(GTK.src/)src/Makefile.am
set -e; cd $(GTK.src/); NOCONFIGURE=1 ./autogen.sh
set -e; cd $(GTK.build/); $(call fn.ABSOLUTE,$(GTK.src/))configure \
$(GTK.CONFIGURE.extra) \
- PKG_CONFIG_PATH=$(BUILD/)contrib/lib/pkgconfig \
+ PKG_CONFIG_PATH=$(BUILD/)contrib/lib/pkgconfig:$(PKG_CONFIG_PATH) \
CFLAGS="$(call fn.ARGS,GTK.GCC,.g .O *D ?extra)" \
LDFLAGS="$(call fn.ARGS,GTK.GCC,?strip .g .O ?extra.exe)" \
--prefix=$(PREFIX) \