aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/pd-extended-auto-builder.sh
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-10-19 00:55:48 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-10-19 00:55:48 +0000
commit8d20ae669c7f4bb52c60a63337e94291f8095b14 (patch)
treebdca6ff7f8ad3d5deb49e2f7fdee9abd942f77a3 /scripts/auto-build/pd-extended-auto-builder.sh
parentd183d5c0766873270cecea0f10085d85b5c57280 (diff)
the uname -s is now downcased in auto-build-common, so I adjusted the case statement accordingly
svn path=/trunk/; revision=6138
Diffstat (limited to 'scripts/auto-build/pd-extended-auto-builder.sh')
-rwxr-xr-xscripts/auto-build/pd-extended-auto-builder.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/auto-build/pd-extended-auto-builder.sh b/scripts/auto-build/pd-extended-auto-builder.sh
index 98762e42..c774453d 100755
--- a/scripts/auto-build/pd-extended-auto-builder.sh
+++ b/scripts/auto-build/pd-extended-auto-builder.sh
@@ -10,19 +10,19 @@ SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
BUILD_DIR=.
case $SYSTEM in
- Linux)
+ linux)
BUILD_DIR=linux_make
echo "Configuring to use $BUILD_DIR on GNU/Linux"
;;
- Darwin)
+ darwin)
BUILD_DIR=darwin_app
echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
;;
- MINGW*)
+ mingw*)
BUILD_DIR=win32_inno
echo "Configuring to use $BUILD_DIR on MinGW/Windows"
;;
- CYGWIN*)
+ cygwin*)
BUILD_DIR=win32_inno
echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
;;
@@ -64,16 +64,16 @@ upload_build ()
case $SYSTEM in
- Linux)
+ linux)
upload_build linux_make build tar.bz2
;;
- Darwin)
+ darwin)
upload_build darwin_app . dmg
;;
- MINGW*)
+ mingw*)
upload_build win32_inno Output exe
;;
- CYGWIN*)
+ cygwin*)
upload_build win32_inno Output exe
;;
esac