diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2006-02-03 20:08:56 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2006-02-03 20:08:56 +0000 |
commit | e3e716a021f566d2ae8ae365e60cbe0d8d1a009a (patch) | |
tree | 83ef7c784ff1a453902b616ce2c3d5c479c04003 /Tools | |
parent | b762d9e066022ed1670c13bdb5d5fb5de736cdb8 (diff) | |
download | ports-e3e716a021f566d2ae8ae365e60cbe0d8d1a009a.tar.gz ports-e3e716a021f566d2ae8ae365e60cbe0d8d1a009a.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/pdispatch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/portbuild/scripts/pdispatch b/Tools/portbuild/scripts/pdispatch index 9a60525e0342..ee4bf5a8c56c 100755 --- a/Tools/portbuild/scripts/pdispatch +++ b/Tools/portbuild/scripts/pdispatch @@ -43,10 +43,10 @@ fi args=${1+"$@"} flags="" -noclean=0 +clean=1 if [ "x$NOCLEAN" != "x" ]; then flags="${flags} -noclean" - noclean=1 + clean=0 fi if [ "x$NO_RESTRICTED" != "x" ]; then flags="${flags} -norestr" @@ -126,7 +126,7 @@ while `true`; do lockf -k ${pb}/${arch}/${branch}/failure.lock ${pb}/scripts/buildfailure ${arch} ${branch} ${pkgname} fi - ssh -a -n ${client_user}@${host} ${sudo_cmd} ${pb}/scripts/clean-chroot ${arch} ${branch} ${chroot} ${noclean} + ssh -a -n ${client_user}@${host} ${sudo_cmd} ${pb}/scripts/clean-chroot ${arch} ${branch} ${chroot} ${clean} lockf -k ${pb}/${arch}/queue/.lock ${pb}/scripts/releasemachine ${arch} ${host} |