diff options
author | jlam <jlam> | 2000-12-17 20:59:37 +0000 |
---|---|---|
committer | jlam <jlam> | 2000-12-17 20:59:37 +0000 |
commit | 8e4e88786a00bb8160971aafc5bd7ec83789ede7 (patch) | |
tree | 1380e4f0bb7595ca27de9c63768df8d958d079f3 /graphics | |
parent | 4b0f3662eaaae43abfbadb5edcf7f156f4ba0b1a (diff) | |
download | pkgsrc-8e4e88786a00bb8160971aafc5bd7ec83789ede7.tar.gz |
Quote the values when setting variables in case they contain spaces.
This fixes passing in CXXFLAGS from the environment during the build.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/xpdf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/xpdf/Makefile b/graphics/xpdf/Makefile index 07222ce2c75..817ed27f917 100644 --- a/graphics/xpdf/Makefile +++ b/graphics/xpdf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2000/12/07 17:57:16 abs Exp $ +# $NetBSD: Makefile,v 1.21 2000/12/17 20:59:37 jlam Exp $ # FreeBSD Id: Makefile,v 1.12 1998/03/11 03:08:12 vanilla Exp # @@ -24,8 +24,8 @@ GNU_CONFIGURE= YES CONFIGURE_ARGS+=--enable-japanese --enable-chinese CONFIGURE_ARGS+=--with-freetype-includes=${LOCALBASE}/include CONFIGURE_ARGS+=--with-t1-includes=${X11PREFIX}/include -CONFIGURE_ENV+= CXXFLAGS=${CXXFLAGS} -MAKE_ENV+= SED=${SED} ECHO=${ECHO} +CONFIGURE_ENV+= CXXFLAGS="${CXXFLAGS}" +MAKE_ENV+= SED="${SED}" ECHO="${ECHO}" post-install: ${SED} 's|@@LOCALBASE@@|${LOCALBASE}|' \ |