summarylogtreecommitdiffstats
path: root/evewine
blob: f73417f6f277ec8d9ffd789b7160e01a9b3436f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

. /opt/evesetup/lib/evelauncher.shlib

check_custom_wine

if [ -x "$WINEPATH/${0#*eve}" ] ;then
    WINECMD=$WINEPATH/${0#*eve}
else
    WINECMD=$CUSTOMWP\ ${0#*eve}
fi

env WINEPREFIX=$WINEPREFIX \
    WINEDEBUG=-all \
    WINEDLLOVERRIDES="mscoree,mshtml,winemenubuilder.exe=d" \
    $WINECMD "$@"