https://bugs.winehq.org/show_bug.cgi?id=29661
Sebastian Lackner sebastian@fds-team.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |sebastian@fds-team.de
--- Comment #7 from Sebastian Lackner sebastian@fds-team.de --- For everyone interested how to workaround this issue, here the solution used by Pipelight (simplified a bit):
--- snip ---
if [ ! -f "$WINEPREFIX/system.reg" ]; then
if [ -d "$WINEPREFIX" ]; then # Directory exists, but without system.reg - # wine will assume wrong platform, so create dummy system.reg echo -en "WINE REGISTRY Version 2\n\n#arch=$WINEARCH\n" > "$WINEPREFIX/system.reg" fi
"$WINE" wineboot.exe fi
--- snip ---