diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-09-28 20:39:53 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-09-28 20:39:53 +0000 |
commit | fb0fa5f2cc62c2cc9757f0ff65e4a1c975584760 (patch) | |
tree | 4d4859855c9c82ebeb4c43c1c8710c15d95279e9 /scripts | |
parent | 3f48ec905dd4ad00621b82b8e818ad7de9977f1b (diff) |
added status message for debugging
svn path=/trunk/; revision=6048
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auto-build/pd-extended-auto-builder.sh | 4 |
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!" |