diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /comms/lrzsz | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'comms/lrzsz')
-rw-r--r-- | comms/lrzsz/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comms/lrzsz/Makefile b/comms/lrzsz/Makefile index fe81e68b39e..f12382419e8 100644 --- a/comms/lrzsz/Makefile +++ b/comms/lrzsz/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2005/09/28 20:52:18 rillig Exp $ +# $NetBSD: Makefile,v 1.22 2005/12/05 20:49:55 rillig Exp $ DISTNAME= lrzsz-0.12.20 CATEGORIES= comms @@ -15,7 +15,7 @@ GNU_CONFIGURE= yes .include "../../mk/bsd.prefs.mk" -.ifdef (${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" || ${OPSYS} == "Interix") +.if (${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" || ${OPSYS} == "Interix") . include "../../devel/gettext-lib/buildlink3.mk" LOCALE_SUFFIX= mo .else @@ -23,6 +23,6 @@ CONFIGURE_ARGS+= --with-catgets LOCALE_SUFFIX= cat .endif -PLIST_SUBST+= LOCALE_SUFFIX=${LOCALE_SUFFIX} +PLIST_SUBST+= LOCALE_SUFFIX=${LOCALE_SUFFIX:Q} .include "../../mk/bsd.pkg.mk" |