diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-07-25 02:05:42 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-07-25 02:05:42 +0000 |
commit | 50b871604ffd51c06955068fe33e993aeabfdc97 (patch) | |
tree | 877fb76dd3f6ebc3f2ed1144f004f46d666a4bf5 | |
parent | c2e03fadeb6cbeef18ebeb9f2e1e110d9e28b738 (diff) |
cleaned out cruft from auto-build script
svn path=/trunk/; revision=5402
-rwxr-xr-x | scripts/automated-builder.sh | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/scripts/automated-builder.sh b/scripts/automated-builder.sh index ea028c18..cdf9f3f2 100755 --- a/scripts/automated-builder.sh +++ b/scripts/automated-builder.sh @@ -15,10 +15,7 @@ auto_build_root_dir=`pwd` echo "root: $auto_build_root_dir" -cd ${auto_build_root_dir}/packages -# let rsync handle the cleanup -#make unpatch_pd - +# let rsync handle the cleanup with --delete rsync -av --delete rsync://128.238.56.50/pure-data/ ${auto_build_root_dir}/ BUILD_DIR=. @@ -32,11 +29,7 @@ if [ "`echo $SYSTEM | sed -n 's|\(MINGW\)|\1|p'`" == "MINGW" ]; then BUILD_DIR=win32_inno fi -cd "$BUILD_DIR" -pwd -make distclean -make package_clean -rm -rf build +cd "${auto_build_root_dir}/packages/$BUILD_DIR" make -C "${auto_build_root_dir}/packages" patch_pd make install && make package |