diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-21 20:06:01 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-21 20:06:01 +0000 |
commit | 2175f76ed11927ebd20e7e8f27595acf9cf40461 (patch) | |
tree | 77460b28cf7033d9a76dfae004cd61beb310dfdd | |
parent | fa1af0292d29db65362e0ca32858bc2a60106654 (diff) |
fix the invocation of 'make distclean'
svn path=/trunk/; revision=16262
-rwxr-xr-x | scripts/auto-build/pd-extended-auto-builder.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/auto-build/pd-extended-auto-builder.sh b/scripts/auto-build/pd-extended-auto-builder.sh index 87f7fdb6..e9bddea5 100755 --- a/scripts/auto-build/pd-extended-auto-builder.sh +++ b/scripts/auto-build/pd-extended-auto-builder.sh @@ -41,7 +41,8 @@ auto_build_root_dir=`pwd` echo "build root: $auto_build_root_dir" # clean up and update -make distclean # run first so the autotools Makefiles still exist +# run 'make distclean' first so the autotools Makefiles still exist +make -C ${auto_build_root_dir}/packages/$BUILD_DIR distclean for dir in $auto_build_root_dir/*; do clean_and_update_folder $dir remove_dead_svn_externals $dir |