diff options
author | kris <kris@FreeBSD.org> | 2005-04-02 20:18:28 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-04-02 20:18:28 +0000 |
commit | 2d76f9c3a5c199f90036a3b0dbd84bfa1deb3201 (patch) | |
tree | cc0f8184c6fc34a85ea23a241170f6ec7d19df5a /Tools | |
parent | 9718f40c7a6c97b0ef4a11ac5ce275475b501d44 (diff) | |
download | FreeBSD-ports-2d76f9c3a5c199f90036a3b0dbd84bfa1deb3201.zip FreeBSD-ports-2d76f9c3a5c199f90036a3b0dbd84bfa1deb3201.tar.gz |
Flip over the -plistcheck switch to -noplistcheck since we now want to
make it the default behaviour.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/dopackages | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Tools/portbuild/scripts/dopackages b/Tools/portbuild/scripts/dopackages index 1f3e475..b85896e 100755 --- a/Tools/portbuild/scripts/dopackages +++ b/Tools/portbuild/scripts/dopackages @@ -18,7 +18,7 @@ errorexit () { } usage () { - echo "usage: [-continue] [-incremental] [-restart] [-nofinish] [-finish] [-ftp] [-cdrom] [-nodummy] [-nobuild] [-noindex] [-noduds] [-norestr] [-nocvs] [-noportscvs] [-nodoccvs] [-plistcheck] [-distfiles] [-fetch-original] [-trybroken] branch date" + echo "usage: [-continue] [-incremental] [-restart] [-nofinish] [-finish] [-ftp] [-cdrom] [-nodummy] [-nobuild] [-noindex] [-noduds] [-norestr] [-nocvs] [-noportscvs] [-nodoccvs] [-noplistcheck] [-distfiles] [-fetch-original] [-trybroken] branch date" errorexit 1 } @@ -168,7 +168,7 @@ nocvs=0 noportscvs=0 nodoccvs=0 norestr=0 -plistcheck=0 +noplistcheck=0 nodummy=0 cdrom=0 ftp=0 @@ -208,8 +208,8 @@ while [ $# -gt 2 ]; do x-norestr) norestr=1 ;; - x-plistcheck) - plistcheck=1 + x-noplistcheck) + noplistcheck=1 ;; x-nodummy) nodummy=1 @@ -270,7 +270,7 @@ if [ "$dodistfiles" = 1 ]; then export WANT_DISTFILES=1 fi -if [ "$plistcheck" = 1 ]; then +if [ "$noplistcheck" = 0 ]; then export PLISTCHECK=1 fi |