diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-04-02 20:18:28 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-04-02 20:18:28 +0000 |
commit | da08048084625d4d1fc055a3f3499518b7eb61be (patch) | |
tree | 2ba825e0eb7e0c4752b65e04f5865881ca63a9cb /Tools | |
parent | Update the list of files and directories to filter from the plist checking. (diff) |
Flip over the -plistcheck switch to -noplistcheck since we now want to
make it the default behaviour.
Notes
Notes:
svn path=/head/; revision=132263
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 1f3e475cef64..b85896e542ae 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 |