Commit 87ec7ec5 authored by Alexandre Julliard's avatar Alexandre Julliard

wineprefixcreate: Avoid redundant update on initial wineprefix creation.

parent fb61856b
......@@ -122,7 +122,12 @@ fi
WINEPREFIX=`cd "$WINEPREFIX" && pwd`
export WINEPREFIX
"${WINELOADER:-$bindir/wine}" wineboot.exe --update
if [ -d "$WINEPREFIX/dosdevices" ]
then
"${WINELOADER:-$bindir/wine}" wineboot.exe --update
else
"${WINELOADER:-$bindir/wine}" wineboot.exe
fi
# Wait for the wineserver to finish
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment