aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/pd-devel-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-devel-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-devel-auto-builder.sh')
-rw-r--r--scripts/auto-build/pd-devel-auto-builder.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/auto-build/pd-devel-auto-builder.sh b/scripts/auto-build/pd-devel-auto-builder.sh
index 8670f705..b4a2a6d4 100644
--- a/scripts/auto-build/pd-devel-auto-builder.sh
+++ b/scripts/auto-build/pd-devel-auto-builder.sh
@@ -8,16 +8,16 @@ SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'`
SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
case $SYSTEM in
- Linux)
+ linux)
echo "Configuring for GNU/Linux"
;;
- Darwin)
+ darwin)
echo "Configuring for Darwin/Mac OS X"
;;
- MINGW*)
+ mingw*)
echo "Configuring for MinGW/Windows"
;;
- CYGWIN*)
+ cygwin*)
echo "Configuring for Cygwin/Windows"
;;
*)