summaryrefslogtreecommitdiff
path: root/meta/uninstalled-env.in
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2009-04-06 11:07:22 -0700
committerAndy Wingo <wingo@pobox.com>2009-04-06 11:08:38 -0700
commit275baf01136895093570725fe55c4104725a9387 (patch)
tree956ca5fe3f52e94e6fc5368a7de907d1e7d176ac /meta/uninstalled-env.in
parentda8b47478e08976ac4569a3030e43aa520e76b01 (diff)
downloadguile-275baf01136895093570725fe55c4104725a9387.tar.gz
guile-config rebased on top of pkg-config
* configure.in: * meta/Makefile.am (EXTRA_DIST): Remove guile-config.in bits. * meta/guile-config: Reimplement to work on top of pkg-config. This lets guile-config not be substed by configure. * meta/uninstalled-env.in: Remove the path to guile-config, belatedly. Set the pkg-config path correctly.
Diffstat (limited to 'meta/uninstalled-env.in')
-rw-r--r--meta/uninstalled-env.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/uninstalled-env.in b/meta/uninstalled-env.in
index fa8285d94..02c0e315e 100644
--- a/meta/uninstalled-env.in
+++ b/meta/uninstalled-env.in
@@ -85,14 +85,13 @@ export DYLD_LIBRARY_PATH
if [ x"$PKG_CONFIG_PATH" = x ]
then
- PKG_CONFIG_PATH="${top_builddir}"
+ PKG_CONFIG_PATH="${top_builddir}/meta"
else
- PKG_CONFIG_PATH="${top_builddir}:$PKG_CONFIG_PATH"
+ PKG_CONFIG_PATH="${top_builddir}/meta:$PKG_CONFIG_PATH"
fi
export PKG_CONFIG_PATH
# handle PATH (no clobber)
-PATH="${top_builddir}/guile-config:${PATH}"
PATH="${top_builddir}/libguile:${PATH}"
PATH="${top_builddir}/meta:${PATH}"
export PATH