]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/scripts/setup
update configure
[bacula/bacula] / regress / scripts / setup
index 47b968e1f88cd70f12a47e638fe4ae3f63f4d743..3954298fa081bb1a47d6b41f2994557b22c2a2b8 100755 (executable)
@@ -25,7 +25,12 @@ rm -rf build bin
 # Copy new source
 echo "Copying source from ${BACULA_SOURCE}"
 cp -rp ${BACULA_SOURCE} build
-git show HEAD | grep -m 1 commit | awk '{print $2}' > build/git-version
+which git >/dev/null 2>/dev/null
+if [ $? = 0 ] ; then
+  git show HEAD | grep -m 1 commit | awk '{print $2}' > build/git-version
+else
+  echo "Git not found." >build/git-version
+fi
 scripts/create_sed
 # In default bacula-dir.conf.in, change default file 
 # to backup to be build directory
@@ -45,14 +50,16 @@ rm -f Makefile config.*
 check_exit_code
 # Cleanup any build in source
 make clean
-make -j3
+make $MAKEOPT
 check_exit_code
 make install
-rm -rf examples patches
-check_exit_code
-# eliminate non-essential directories to reduce
-#   size.  Otherwise regress run too long
-rm -rf src/win32 examples patches
+if [ a$KEEP_SOURCE = a ]; then
+   rm -rf examples patches
+   check_exit_code
+   # eliminate non-essential directories to reduce
+   #   size.  Otherwise regress run too long
+   rm -rf src/win32 examples patches
+fi
 # get all tools -- especially testls
 cd src/tools
 make installall