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 /devel/ucl/Makefile | |
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 'devel/ucl/Makefile')
-rw-r--r-- | devel/ucl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/ucl/Makefile b/devel/ucl/Makefile index b980b2d93c2..b3e19e5dfa3 100644 --- a/devel/ucl/Makefile +++ b/devel/ucl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2005/06/24 10:55:20 kristerw Exp $ +# $NetBSD: Makefile,v 1.15 2005/12/05 20:50:08 rillig Exp $ # DISTNAME= ucl-1.02 @@ -17,10 +17,10 @@ GNU_CONFIGURE= YES CONFIGURE_ARGS+= --enable-shared=yes # Avoid an ICE in gcc2 on sparc64 -CONFIGURE_ENV+= F77=${FALSE} +CONFIGURE_ENV+= F77=${FALSE:Q} # Avoid path to build directory in example Makefile -SUBST_CLASSES= example +SUBST_CLASSES+= example SUBST_STAGE.example= post-patch SUBST_FILES.example= examples/Makefile.in SUBST_SED.example= -e "s|@MAKEINFO@||g" |