blob: 1936136acebe867d6274cb07025f753b2f14553d (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|