VirtualBox

source: vbox/trunk/src/VBox/Additions/3D/mesa/mesa-24.0.2/.gitlab-ci/container/setup-wine.sh@ 103996

Last change on this file since 103996 was 103996, checked in by vboxsync, 13 months ago

Additions/3D/mesa: export mesa-24.0.2 to OSE. bugref:10606

File size: 673 bytes
Line 
1#!/usr/bin/env bash
2
3export WINEPREFIX="$1"
4export WINEDEBUG="-all"
5
6# We don't want crash dialogs
7cat >crashdialog.reg <<EOF
8Windows Registry Editor Version 5.00
9
10[HKEY_CURRENT_USER\Software\Wine\WineDbg]
11"ShowCrashDialog"=dword:00000000
12
13EOF
14
15# Set the wine prefix and disable the crash dialog
16wine regedit crashdialog.reg
17rm crashdialog.reg
18
19# An immediate wine command may fail with: "${WINEPREFIX}: Not a
20# valid wine prefix." and that is just spit because of checking
21# the existance of the system.reg file, which fails. Just giving
22# it a bit more of time for it to be created solves the problem
23# ...
24while ! test -f "${WINEPREFIX}/system.reg"; do sleep 1; done
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette