build fixes and tweaks
[goodguy/history.git] / cinelerra-5.1 / bld_scripts / bld_incremental.sh
diff --git a/cinelerra-5.1/bld_scripts/bld_incremental.sh b/cinelerra-5.1/bld_scripts/bld_incremental.sh
deleted file mode 100755 (executable)
index 8a31cc6..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-dir="$1"
-path="/home"
-bld="git-repo"
-proj="cinelerra5"
-base="cinelerra-5.1"
-
-if [ ! -d "$path/$dir/$bld/$proj" ]; then
-  echo "$bld/$proj missing in $path/$dir"
-  exit 1
-fi
-
-cd "$path/$dir/$bld/$proj"
-git pull
-if [ $? -ne 0 ]; then
-  echo "git pull $bld/$proj failed"
-  exit 1
-fi
-
-cd "$base"
-make rebuild_all >& log1
-
-echo "finished: scanning log for ***"
-grep -a "\*\*\*" log1
-