diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-10-11 04:02:05 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-10-11 04:02:05 +0000 |
commit | f03134ec0a666d68404e27c05a80af42a6a1fbb0 (patch) | |
tree | f73a3364ff4be99b0b7a24cf572c5ba395e246ab /Tools | |
parent | Update lockf to lockf -k in example usage (diff) |
Remove unused variables. Don't bother protecting against negative
queue lengths since that doesn't arise.
Notes
Notes:
svn path=/head/; revision=144899
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/releasemachine | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Tools/portbuild/scripts/releasemachine b/Tools/portbuild/scripts/releasemachine index 66d23b193845..0dad470b01ed 100755 --- a/Tools/portbuild/scripts/releasemachine +++ b/Tools/portbuild/scripts/releasemachine @@ -5,8 +5,8 @@ buildroot=/var/portbuild i=$1 m=$2 -infoseek_host=$m -infoseek_port=infoseek +#infoseek_host=$m +#infoseek_port=infoseek . ${buildroot}/${i}/portbuild.conf if [ -f ${buildroot}/${i}/portbuild.${m} ]; then . ${buildroot}/${i}/portbuild.${m} @@ -21,8 +21,6 @@ fi if [ "$num" -gt 0 ]; then echo $((${num}-1)) > $q -else - echo 0 > $q fi chown ports-${i} ${q} |