diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-11 06:34:17 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-11 06:34:17 +0000 |
commit | c4e71c5e7a56600bcceba68cbed656ef7246e444 (patch) | |
tree | 6b373d2a314b8d27a2d1f47c4cb173dc5c0d7a48 /converters/psiconv | |
parent | a057ade2a392070aecc8ee511ae1cab01869b513 (diff) | |
download | pkgsrc-c4e71c5e7a56600bcceba68cbed656ef7246e444.tar.gz |
CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, so
adapt by moving CPPFLAGS settings to top-level, and removing explicit
inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
Diffstat (limited to 'converters/psiconv')
-rw-r--r-- | converters/psiconv/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/converters/psiconv/Makefile b/converters/psiconv/Makefile index 24399d7770a..e7b181c3f99 100644 --- a/converters/psiconv/Makefile +++ b/converters/psiconv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2001/02/25 04:17:39 hubertf Exp $ +# $NetBSD: Makefile,v 1.9 2001/06/11 06:34:22 jlam Exp $ # DISTNAME= psiconv-0.6.1 @@ -21,8 +21,8 @@ USE_X11= YES USE_LIBTOOL= YES LTCONFIG_OVERRIDE=${WRKSRC}/ltconfig GNU_CONFIGURE= YES -CONFIGURE_ENV+= CPPFLAGS="`${MAGICK_CONFIG} --cppflags` -DIMAGEMAGICK" \ - LIBS="${LIBS} `${MAGICK_CONFIG} --libs`" +CONFIGURE_ENV+= LIBS="${LIBS} `${MAGICK_CONFIG} --libs`" +CPPFLAGS+= `${MAGICK_CONFIG} --cppflags` -DIMAGEMAGICK" post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/psiconv |