diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-11 21:16:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-11 21:16:46 +0000 |
commit | 8eca28e38a7f38fd3a664b68ba042efc59655d43 (patch) | |
tree | 9b6bb754563696563108ac97fecce80e8e03989e | |
parent | 3d276da4dc27d4eb8f98515fac3a87c23c0d6a50 (diff) | |
download | pkgsrc-8eca28e38a7f38fd3a664b68ba042efc59655d43.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}.
-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 && \ |