diff options
author | rillig <rillig> | 2005-12-11 21:16:46 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-11 21:16:46 +0000 |
commit | 24edacf6e097333e752e5dbca4e9c3f3589e4561 (patch) | |
tree | 9b6bb754563696563108ac97fecce80e8e03989e /editors | |
parent | 474b88b4dd65ce28c41ad9b977a62864e7f6b0a6 (diff) | |
download | pkgsrc-24edacf6e097333e752e5dbca4e9c3f3589e4561.tar.gz |
Fixed the bug that has been introduced with the pkglint patch on Dec 05.
I had written {PREFIX:Q} instead of ${PREFIX:Q}.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/lpe/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/lpe/Makefile b/editors/lpe/Makefile index f3c66bdc2d0..7c2dda928d3 100644 --- a/editors/lpe/Makefile +++ b/editors/lpe/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2005/12/05 20:50:09 rillig Exp $ +# $NetBSD: Makefile,v 1.13 2005/12/11 21:16:46 rillig Exp $ # DISTNAME= lpe-1.2.6 @@ -23,7 +23,7 @@ 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}\" +CFLAGS+= -DPREFIX=\"${PREFIX:Q}\" post-patch: @cd ${WRKSRC}/man && \ |