diff options
author | tron <tron@pkgsrc.org> | 2007-04-20 09:25:36 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2007-04-20 09:25:36 +0000 |
commit | f58745f955316bf29d101a95f9465b8017bd3743 (patch) | |
tree | 91392773cbf3e096f046ad5cfdcd2e0cb250ea4a /pkgtools/pkg_chk | |
parent | 01eed0c9b2967a603b488d92de66a2b1968b15b0 (diff) | |
download | pkgsrc-f58745f955316bf29d101a95f9465b8017bd3743.tar.gz |
Fix quoting so that the code to detect the location of "mk.conf" actually
works (under Darwin?). Bump package revision again.
Diffstat (limited to 'pkgtools/pkg_chk')
-rw-r--r-- | pkgtools/pkg_chk/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pkg_chk/files/pkg_chk.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/pkg_chk/Makefile b/pkgtools/pkg_chk/Makefile index 59d54899aa5..ff1040d4500 100644 --- a/pkgtools/pkg_chk/Makefile +++ b/pkgtools/pkg_chk/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.49 2007/04/19 18:44:22 abs Exp $ +# $NetBSD: Makefile,v 1.50 2007/04/20 09:25:36 tron Exp $ DISTNAME= pkg_chk-1.85 -PKGREVISION= 1 +PKGREVISION= 2 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 bef71827819..c343d1d4bab 100755 --- a/pkgtools/pkg_chk/files/pkg_chk.sh +++ b/pkgtools/pkg_chk/files/pkg_chk.sh @@ -1,6 +1,6 @@ #!@SH@ -e # -# $Id: pkg_chk.sh,v 1.46 2007/04/16 18:42:21 abs Exp $ +# $Id: pkg_chk.sh,v 1.47 2007/04/20 09:25:37 tron Exp $ # # TODO: Make -g check dependencies and tsort # TODO: Variation of -g which only lists top level packages @@ -701,7 +701,7 @@ test -n "$SED" || SED="@SED@" test -n "$SORT" || SORT="@SORT@" test -n "$TSORT" || TSORT="@TSORT@" -if [ ! -f $MAKECONF ] ; then +if [ ! -f "$MAKECONF" ] ; then if [ -f @PREFIX@/etc/mk.conf ] ; then MAKECONF=@PREFIX@/etc/mk.conf elif [ -f /etc/mk.conf ] ; then |