about summary refs log tree commit diff
path: root/tests/init.sh
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-01-11T16·58+0000
committerLudovic Courtès <ludo@gnu.org>2012-01-11T16·58+0000
commit6245f0d5298f613c39f999fd68bf21aee8d72945 (patch)
tree73eef81ffd3a801fa333e15dac227885b9745a16 /tests/init.sh
parentc5d9ccd810e3d4c791a912767c4463f4bb44d52e (diff)
tests: Run `download-using-manifests' via libtool so that dlopening works.
Diffstat (limited to '')
-rw-r--r--tests/init.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/init.sh b/tests/init.sh
index 9ce7985d709e..4296f43b6108 100644
--- a/tests/init.sh
+++ b/tests/init.sh
@@ -47,7 +47,9 @@ EOF
 cat > $NIX_BIN_DIR/nix/substituters/download-using-manifests.pl <<EOF
 #! $SHELL -e
 export DYLD_LIBRARY_PATH=
-exec $TOP/scripts/download-using-manifests.pl "\$@"
+exec "$top_builddir/libtool" --mode=execute			\
+  -dlopen "$top_builddir/perl/libNixStore.la"			\
+  "$top_builddir/scripts/download-using-manifests.pl" "\$@"
 EOF
 chmod +x $NIX_BIN_DIR/nix/substituters/download-using-manifests.pl