X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fbuild%2Fbld_incremental.sh;fp=cinelerra-5.1%2Fbuild%2Fbld_incremental.sh;h=1d98252b5cd91315326c400ad2cb3e75fd8d5019;hp=0000000000000000000000000000000000000000;hb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;hpb=52fcc46226f9df46f9ce9d0566dc568455a7db0b diff --git a/cinelerra-5.1/build/bld_incremental.sh b/cinelerra-5.1/build/bld_incremental.sh new file mode 100755 index 00000000..1d98252b --- /dev/null +++ b/cinelerra-5.1/build/bld_incremental.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +dir="$1" +path="/home" +bld="google_code" +proj="cinelerra" +base="cinelerra-4.6.mod" + +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 +