summarylogtreecommitdiffstats
path: root/evewine
diff options
context:
space:
mode:
authorJernuh Zakalwe2018-10-26 14:58:20 +0200
committerJernuh Zakalwe2018-10-26 14:58:20 +0200
commitee7f270348f9e29f09aa91a30fe3010be05616cb (patch)
tree236f89d22811524295655494294ac6c8affcb253 /evewine
parentfb836635a8a506abc23fcc9a75970312a0660706 (diff)
downloadaur-ee7f270348f9e29f09aa91a30fe3010be05616cb.tar.gz
build_installer.sh:
Remove test sections in setup.sh before creating .run file. Pack format changed from xz to gz to speedup build process. evelauncher.sh: Using real $WINEPATH/wineserver for checking wine build. Using internal wineboot command via wine. evewine: Changed handling from internal wine commands to be more robust and extendable. setup.sh: Mark test sections to be easier to remove or activate.
Diffstat (limited to 'evewine')
-rw-r--r--evewine8
1 files changed, 7 insertions, 1 deletions
diff --git a/evewine b/evewine
index 4bb6b3cc176c..6c81fcfe2c3a 100644
--- a/evewine
+++ b/evewine
@@ -17,7 +17,13 @@ if [ ! -x "$WINEPATH/wine" ] ;then
exit 1
fi
+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" \
- $WINEPATH/${0#*eve} "$@"
+ $WINECMD "$@"