Skip to content

Commit 2d968a2

Browse files
committed
Minor clean-up
1 parent a8e61b8 commit 2d968a2

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
set -o pipefail
99

1010
if [[ -f /etc/debian_version ]]; then
11-
APT='apt-get -qq -y'
11+
APT='apt-get -qq -y'
1212

1313
# Update cache
1414
#dpkg --add-architecture i386 &&

scripts/build

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,29 +46,34 @@ case $OS in
4646
TARGET_LIST+=,$TARGET_USER
4747
DISPLAY=sdl
4848
PRODUCTS=(bin libexec share)
49-
;;
49+
;;
50+
5051
'FreeBSD')
5152
PLATFORM=freebsd
52-
;;
53+
;;
54+
5355
'WindowsNT')
5456
PLATFORM=win
55-
;;
57+
;;
58+
5659
'Darwin')
5760
PLATFORM=darwin
5861
AUDIO=coreaudio
5962
DISPLAY=cocoa
6063
PRODUCTS=(bin share)
61-
;;
64+
;;
65+
6266
'SunOS')
6367
PLATFORM=solaris
64-
;;
68+
;;
69+
6570
'AIX')
6671
PLATFORM=linux
6772
AUDIO=alsa
6873
TARGET_LIST+=,$TARGET_USER
6974
DISPLAY=sdl
7075
PRODUCTS=(bin libexec share)
71-
;;
76+
;;
7277

7378
*)
7479
echo Unknown OS "$OS"

0 commit comments

Comments
 (0)