../.lib into wine's dll search path, so create additional
symlinks.
* testsuite/teardown-env: ...and delete them here.
* examples/setup-env: Similar links setup here.
* examples/teardown-env: ... and deleted.
Rev: nettle/examples/setup-env:1.3
Rev: nettle/examples/teardown-env:1.3
set -e
+# Workaround, it seems difficult to convince wine to put ../lib into PATH.
+case "$EMULATOR" in
+ wine*)
+ for f in ../.lib/*.dll ; do
+ ln -s "$f" .
+ done
+ ;;
+esac
+
if [ -x rsa-keygen$EXEEXT ] ; then
$EMULATOR ./rsa-keygen -r rsa-decrypt$EXEEXT -o testkey || exit 1
fi
testdata testtmp \
testciphertext testcleartext
-
+case "$EMULATOR" in
+ wine*)
+ rm `find . -type l -name '*.dll'`
+ ;;
+esac