Author: mladen.turk(a)jboss.com
Date: 2008-04-03 05:05:02 -0400 (Thu, 03 Apr 2008)
New Revision: 1506
Modified:
trunk/build/daemon/buildall.sh
Log:
Add some params to daemon script
Modified: trunk/build/daemon/buildall.sh
===================================================================
--- trunk/build/daemon/buildall.sh 2008-04-03 08:04:59 UTC (rev 1505)
+++ trunk/build/daemon/buildall.sh 2008-04-03 09:05:02 UTC (rev 1506)
@@ -28,8 +28,27 @@
echo "Params : $@"
echo ""
+build_ssl=true
+
+while [ "x" != "x$1" ]
+do
+ case $1 in
+ -env)
+ echo "Dumping environment"
+ env
+ echo ""
+ ;;
+ -no-ssl)
+ build_ssl=false
+ ;;
+ esac
+ shift
+done
+
(cd ../unix
- ./build.sh jboss-native -ssl -cache
+ if $build_ssl; then
+ ./build.sh jboss-native -ssl -cache
+ fi
./build.sh jboss-native -cache
# Uncomment for building sight
# ./build.sh jboss-sight -cache
Show replies by date