diff options
-rw-r--r-- | doc/CHANGES | 4 | ||||
-rw-r--r-- | pkgtools/pkgchk/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pkgchk/files/pkgchk.sh | 6 |
3 files changed, 8 insertions, 6 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index e45fb8459f7..b6a456674e8 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.4032 2003/12/09 11:30:52 drochner Exp $ +$NetBSD: CHANGES,v 1.4033 2003/12/09 12:54:58 abs Exp $ Changes to the packages collection and infrastructure in 2003: @@ -5043,3 +5043,5 @@ Changes to the packages collection and infrastructure in 2003: Updated gcc3 to 3.3.2 [drochner 2003-12-09] Updated zope to 2.6.2 [drochner 2003-12-09] Updated disc-cover to 1.5.4 [drochner 2003-12-09] + Updated pkgchk to 1.45 [abs 2003-12-09] + diff --git a/pkgtools/pkgchk/Makefile b/pkgtools/pkgchk/Makefile index 2ba03044677..cea9f0d0251 100644 --- a/pkgtools/pkgchk/Makefile +++ b/pkgtools/pkgchk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.48 2003/10/04 21:07:53 agc Exp $ +# $NetBSD: Makefile,v 1.49 2003/12/09 12:54:13 abs Exp $ -DISTNAME= pkgchk-1.44 +DISTNAME= pkgchk-1.45 WRKSRC= ${WRKDIR} CATEGORIES= pkgtools MASTER_SITES= # empty diff --git a/pkgtools/pkgchk/files/pkgchk.sh b/pkgtools/pkgchk/files/pkgchk.sh index a2c6e1678dd..aa0d4031284 100755 --- a/pkgtools/pkgchk/files/pkgchk.sh +++ b/pkgtools/pkgchk/files/pkgchk.sh @@ -1,6 +1,6 @@ #!/bin/sh -e # -# $Id: pkgchk.sh,v 1.47 2003/10/04 21:07:53 agc Exp $ +# $Id: pkgchk.sh,v 1.48 2003/12/09 12:54:13 abs Exp $ # # TODO: Handle updates with dependencies via binary packages @@ -330,7 +330,7 @@ while [ $# != 0 ]; do -k ) opt_k=1 ;; -l ) opt_l=1 ;; -n ) opt_n=1 ;; - -r ) opt_r=1 ;; + -r ) opt_r=1 ; opt_i=1 ;; -s ) opt_s=1 ;; -u ) opt_u=1 ; opt_i=1 ;; -v ) opt_v=1 ;; @@ -366,7 +366,7 @@ if [ -n "$opt_h" -o $# != 1 ];then -k Continue with further packages if errors are encountered -l List binary packages including dependencies (implies -c) -n Display actions that would be taken, but do not perform them - -r Recursively remove mismatched files (use with care) + -r Recursively remove mismatches (use with care) (implies -i) -s Limit installations to building from source -u Update all mismatched packages (implies -i) -v Verbose |