echo "Running in Windows 98 environment..."
export WINDOWS_VERSION="win98"
-if [ -z "$WINEDLLOVERRIDES" ] ; then
- export WINEDLLOVERRIDES="ole32,rpcrt4,oleaut32,olepro32,msi,msiexec.exe=n,b"
-else
- export WINEDLLOVERRIDES="$WINEDLLOVERRIDES;ole32,rpcrt4,oleaut32,olepro32,msi,msiexec.exe=n,b"
-fi
+[ -z "$WINEDLLOVERRIDES" ] || WINEDLLOVERRIDES="${WINEDLLOVERRIDES};"
+
+export WINEDLLOVERRIDES="${WINEDLLOVERRIDES}ole32,rpcrt4,oleaut32,olecnv32,olethk32,olepro32,msi,msiexec.exe=n"
+
wine "$@"