From: Niels Möller Date: Tue, 17 Jan 2012 13:48:27 +0000 (+0100) Subject: Resurrected file. X-Git-Tag: converted-master-branch-to-git~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5000596555030d00cd3bf737820c4ca608769d8c;p=thirdparty%2Fnettle.git Resurrected file. Rev: nettle/testsuite/setup-env:1.3 --- diff --git a/testsuite/setup-env b/testsuite/setup-env new file mode 100755 index 00000000..1936136a --- /dev/null +++ b/testsuite/setup-env @@ -0,0 +1,12 @@ +#! /bin/sh + +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