diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-10-23 00:11:43 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-10-23 00:11:43 +0200 |
commit | 7f894427b29c1567bb340969c9fb4f3be6f7d910 (patch) | |
tree | 9a1f8432bbf74dda3acc85a03b7dd5dc55c2506f | |
parent | 686e31c590b4c9ae80304ad873357d3b7dca7641 (diff) | |
download | cuirass-7f894427b29c1567bb340969c9fb4f3be6f7d910.tar cuirass-7f894427b29c1567bb340969c9fb4f3be6f7d910.tar.gz |
maint: Use absolute directory names in GUIX_PACKAGE_PATH.
This fixes "tests/hello-singleton.scm" evaluation.
* build-aux/pre-inst-env.in (GUIX_PACKAGE_PATH): Use absolute directory
names.
-rw-r--r-- | build-aux/pre-inst-env.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/pre-inst-env.in b/build-aux/pre-inst-env.in index b67dc5e..c8deb2d 100644 --- a/build-aux/pre-inst-env.in +++ b/build-aux/pre-inst-env.in @@ -30,7 +30,7 @@ export CUIRASS_DATADIR PATH="$abs_top_builddir/bin:$PATH" export PATH -GUIX_PACKAGE_PATH="guix${GUIX_PACKAGE_PATH:+:}$GUIX_PACKAGE_PATH" +GUIX_PACKAGE_PATH="$abs_top_srcdir/guix${GUIX_PACKAGE_PATH:+:}$GUIX_PACKAGE_PATH" export GUIX_PACKAGE_PATH exec "$@" |