summaryrefslogtreecommitdiff
path: root/editors/lpe
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-18 20:57:26 +0000
committerrillig <rillig>2005-12-18 20:57:26 +0000
commit281ad6c47aa689ede583133113b7f1ad376fdc73 (patch)
treeb342d430980a38823ab336c4b52883988fa9daf3 /editors/lpe
parentcfe8e0b7df839657651a8204a0c7e70bea8ee3e6 (diff)
downloadpkgsrc-281ad6c47aa689ede583133113b7f1ad376fdc73.tar.gz
Fixed quoting bugs related to autoconf2.13.
Diffstat (limited to 'editors/lpe')
-rw-r--r--editors/lpe/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/editors/lpe/Makefile b/editors/lpe/Makefile
index 7c2dda928d3..73db19b4326 100644
--- a/editors/lpe/Makefile
+++ b/editors/lpe/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2005/12/11 21:16:46 rillig Exp $
+# $NetBSD: Makefile,v 1.14 2005/12/18 20:57:26 rillig Exp $
#
DISTNAME= lpe-1.2.6
@@ -21,9 +21,11 @@ GNU_CONFIGURE= YES
SHLIBTOOL_OVERRIDE= libtool
-CONFIGURE_ENV+= EXPORT_SYMBOLS_LDFLAGS=${EXPORT_SYMBOLS_LDFLAGS:Q}
-MAKE_ENV+= EXPORT_SYMBOLS_LDFLAGS=${EXPORT_SYMBOLS_LDFLAGS:Q}
-CFLAGS+= -DPREFIX=\"${PREFIX:Q}\"
+# Note: pkglint warns about the following three lines, but they must not
+# be changed because this package uses autoconf2.13.
+CONFIGURE_ENV= EXPORT_SYMBOLS_LDFLAGS="${EXPORT_SYMBOLS_LDFLAGS}"
+MAKE_ENV= EXPORT_SYMBOLS_LDFLAGS="${EXPORT_SYMBOLS_LDFLAGS}"
+CFLAGS= -DPREFIX="\"${PREFIX}\""
post-patch:
@cd ${WRKSRC}/man && \