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 | 5ec134d67dbba7a354689af359fb4dd92bc8cbec (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /misc/dync | |
parent | 9d13f62cc158ce4d29412c1798882c83849d448b (diff) | |
download | pkgsrc-5ec134d67dbba7a354689af359fb4dd92bc8cbec.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 'misc/dync')
-rw-r--r-- | misc/dync/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/dync/Makefile b/misc/dync/Makefile index 34cfd016792..b2b07b029b6 100644 --- a/misc/dync/Makefile +++ b/misc/dync/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2005/07/08 21:09:36 kristerw Exp $ +# $NetBSD: Makefile,v 1.15 2005/12/05 20:50:38 rillig Exp $ # DISTNAME= dync-1.1 @@ -13,7 +13,7 @@ COMMENT= awk-like utility with C as language GNU_CONFIGURE= yes BUILD_TARGET= tst USE_TOOLS+= file_cmd -CONFIGURE_ENV+= FILE_CMD="${TOOLS_FILE_CMD}" -CONFIGURE_ENV+= ac_cv_path_LDCONFIG="${TOOLS_LDCONFIG}" +CONFIGURE_ENV+= FILE_CMD=${TOOLS_FILE_CMD:Q} +CONFIGURE_ENV+= ac_cv_path_LDCONFIG=${TOOLS_LDCONFIG:Q} .include "../../mk/bsd.pkg.mk" |