diff options
author | abs <abs@pkgsrc.org> | 2006-02-06 12:44:08 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2006-02-06 12:44:08 +0000 |
commit | 8db20b79d32a4a09564d9bbf3b141b667927413b (patch) | |
tree | 19b803d19935cc5acd4fe513f7b22eab91a17162 | |
parent | 1a53737f430b4ff849b0771b58ef7ba4bb7314d3 (diff) | |
download | pkgsrc-8db20b79d32a4a09564d9bbf3b141b667927413b.tar.gz |
Update pkg_chk to 1.76:
Append rather than prepend /usr/sbin:/usr/bin to path, to avoid issues
on Solaris which has feature-poor ftp in /usr/bin
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | pkgtools/pkg_chk/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pkg_chk/files/pkg_chk.sh | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 8c73c522ae0..efca1d6f1f5 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.12816 2006/02/06 12:14:26 rpaulo Exp $ +$NetBSD: CHANGES,v 1.12817 2006/02/06 12:44:44 abs Exp $ Changes to the packages collection and infrastructure in 2006: @@ -834,3 +834,4 @@ Changes to the packages collection and infrastructure in 2006: Updated lang/php5 to 5.1.2 [martti 2006-02-06] Updated pkgtools/pkglint to 4.56 [rillig 2006-02-06] Updated x11/xcb to 2.4 [rpaulo 2006-02-06] + Updated pkgtools/pkg_chk to 1.76 [abs 2006-02-06] diff --git a/pkgtools/pkg_chk/Makefile b/pkgtools/pkg_chk/Makefile index 45a124a5cbf..83cd33fe0bc 100644 --- a/pkgtools/pkg_chk/Makefile +++ b/pkgtools/pkg_chk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2006/01/15 12:32:56 abs Exp $ +# $NetBSD: Makefile,v 1.26 2006/02/06 12:44:08 abs Exp $ -DISTNAME= pkg_chk-1.66 +DISTNAME= pkg_chk-1.67 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkg_chk/files/pkg_chk.sh b/pkgtools/pkg_chk/files/pkg_chk.sh index 3717c6ec183..806854c148a 100755 --- a/pkgtools/pkg_chk/files/pkg_chk.sh +++ b/pkgtools/pkg_chk/files/pkg_chk.sh @@ -1,12 +1,12 @@ #!@SH@ -e # -# $Id: pkg_chk.sh,v 1.26 2006/01/15 12:32:56 abs Exp $ +# $Id: pkg_chk.sh,v 1.27 2006/02/06 12:44:08 abs Exp $ # # TODO: Make -g check dependencies and tsort # TODO: Variation of -g which only lists top level packages # TODO: List top level packages installed but not in config -PATH=/usr/sbin:/usr/bin:${PATH} +PATH=${PATH}:/usr/sbin:/usr/bin SUMMARY_FILE=pkg_chk-summary |