summarylogtreecommitdiffstats
path: root/mingw-msiexec.sh
blob: ff753373a0db076ddf53adbbb8cf47b8a61d2075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e

# run it in a custom WINEPREFIX to not mess with default ~/.wine
mingw_prefix=/usr/@TRIPLE@
export WINEPREFIX=${HOME}/.wine-@TRIPLE@

if test -z ${WINEDLLOVERRIDES+x}
then
  export WINEDLLOVERRIDES="mscoree,mshtml="
fi

if test -z ${WINEDEBUG+x}
then
  export WINEDEBUG=-all
fi

/usr/bin/msiexec "$@"