aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-09-28 20:39:53 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-09-28 20:39:53 +0000
commitfb0fa5f2cc62c2cc9757f0ff65e4a1c975584760 (patch)
tree4d4859855c9c82ebeb4c43c1c8710c15d95279e9 /scripts
parent3f48ec905dd4ad00621b82b8e818ad7de9977f1b (diff)
added status message for debugging
svn path=/trunk/; revision=6048
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/auto-build/pd-extended-auto-builder.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/auto-build/pd-extended-auto-builder.sh b/scripts/auto-build/pd-extended-auto-builder.sh
index e0f32862..645f214a 100755
--- a/scripts/auto-build/pd-extended-auto-builder.sh
+++ b/scripts/auto-build/pd-extended-auto-builder.sh
@@ -12,15 +12,19 @@ BUILD_DIR=.
case $SYSTEM in
Linux)
BUILD_DIR=linux_make
+ echo "Configuring to use $BUILD_DIR on GNU/Linux"
;;
Darwin)
BUILD_DIR=darwin_app
+ echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
;;
MINGW*)
BUILD_DIR=win32_inno
+ echo "Configuring to use $BUILD_DIR on MinGW/Windows"
;;
CYGWIN*)
BUILD_DIR=win32_inno
+ echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
;;
*)
echo "ERROR: Platform $SYSTEM not supported!"