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 /devel/bonobo | |
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 'devel/bonobo')
-rw-r--r-- | devel/bonobo/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/bonobo/Makefile b/devel/bonobo/Makefile index 70e6f974f2b..77672a3e825 100644 --- a/devel/bonobo/Makefile +++ b/devel/bonobo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2005/05/22 20:07:49 jlam Exp $ +# $NetBSD: Makefile,v 1.52 2005/12/05 20:50:02 rillig Exp $ DISTNAME= bonobo-1.0.22 CATEGORIES= devel @@ -19,8 +19,8 @@ USE_PKGLOCALEDIR= yes USE_X11BASE= yes USE_TOOLS+= gmake GNU_CONFIGURE= yes -CONFIGURE_ENV+= LOCALBASE="${LOCALBASE}" -CONFIGURE_ENV+= X11BASE="${X11BASE}" +CONFIGURE_ENV+= LOCALBASE=${LOCALBASE:Q} +CONFIGURE_ENV+= X11BASE=${X11BASE:Q} CONFIGURE_ARGS+= --enable-gtk-doc=no PKGCONFIG_OVERRIDE= libefs/libefs.pc.in |