comparison g23m/winebuild.sh @ 16:dc9d25ac72a9

initial preparations for building both 2091 and 2092 configs
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sun, 06 Sep 2015 02:28:00 +0000
parents 509db1a7b7b8
children
comparison
equal deleted inserted replaced
15:abe969a9b145 16:dc9d25ac72a9
6 # to preserve and restore the tty modes. 6 # to preserve and restore the tty modes.
7 # 7 #
8 # Also added the TZ=GMT setting: without it Wine produces additional whines 8 # Also added the TZ=GMT setting: without it Wine produces additional whines
9 # about not being able to map my Unix timezone to a Weenie equivalent. 9 # about not being able to map my Unix timezone to a Weenie equivalent.
10 10
11 if [ -n "$1" ]
12 then
13 config="$1"
14 else
15 config=2091
16 fi
17
11 set -x 18 set -x
12 tty_mode_save=`stty -g` 19 tty_mode_save=`stty -g`
13 TZ=GMT nowhine cmd /c build.bat 20 TZ=GMT nowhine cmd /c build_${config}.bat
14 stty "$tty_mode_save" 21 stty "$tty_mode_save"