pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk Fixed the bug that I introduced with the last commi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f0ba98571bb8
branches:  trunk
changeset: 494367:f0ba98571bb8
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Mon May 23 10:24:35 2005 +0000

description:
Fixed the bug that I introduced with the last commit. I confused -n and -z.

diffstat:

 mk/bsd.pkg.subdir.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 6c05bcfffff0 -r f0ba98571bb8 mk/bsd.pkg.subdir.mk
--- a/mk/bsd.pkg.subdir.mk      Mon May 23 09:32:04 2005 +0000
+++ b/mk/bsd.pkg.subdir.mk      Mon May 23 10:24:35 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.pkg.subdir.mk,v 1.57 2005/05/23 07:57:02 rillig Exp $
+#      $NetBSD: bsd.pkg.subdir.mk,v 1.58 2005/05/23 10:24:35 rillig Exp $
 #      Derived from: FreeBSD Id: bsd.port.subdir.mk,v 1.19 1997/03/09 23:10:56 wosch Exp 
 #      from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91
 #
@@ -172,7 +172,7 @@
 .endif
 
 show-comment:
-       @if [ -z ${COMMENT:Q}"" ]; then                                 \
+       @if [ ${COMMENT:Q}"" ]; then                                    \
                ${ECHO} ${COMMENT:Q};                                   \
        elif [ -f COMMENT ] ; then                                      \
                ${CAT} COMMENT;                                         \



Home | Main Index | Thread Index | Old Index