diff options
author | fredb <fredb@pkgsrc.org> | 2001-07-02 22:46:49 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2001-07-02 22:46:49 +0000 |
commit | a2e58d221e9fa410c85479d32d8cac0c1496e877 (patch) | |
tree | dc835cda0883515b801d723140ba4f08c6032c3a /misc/pinfo | |
parent | 5bd6971727a89cd60bf13af7943ff2cee43ed125 (diff) | |
download | pkgsrc-a2e58d221e9fa410c85479d32d8cac0c1496e877.tar.gz |
We must pass a double-quote into the C program to set the value of a string.
For some reason, CPPFLAGS+= pulls the expression in _twice_, with different
quote expansion each time. This makes it even trickier than it needs to be,
so go with CPPFLAGS=.
Diffstat (limited to 'misc/pinfo')
-rw-r--r-- | misc/pinfo/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/pinfo/Makefile b/misc/pinfo/Makefile index 8a3d67b89c9..4fc0e8fddb8 100644 --- a/misc/pinfo/Makefile +++ b/misc/pinfo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/06/11 06:34:45 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2001/07/02 22:46:49 fredb Exp $ # DISTNAME= pinfo-0.6.0 @@ -15,7 +15,7 @@ BUILD_USES_MSGFMT= yes GNU_CONFIGURE= yes USE_LIBINTL= yes -CPPFLAGS+= -DDFLT_INFOPATH='\"/usr/share/info:${X11BASE}/info:${LOCALBASE}/info:/usr/local/info\"' +CPPFLAGS= -DDFLT_INFOPATH='\"/usr/share/info:${X11BASE}/info:${LOCALBASE}/info:/usr/local/info\"' post-install: ${INSTALL_DATA} ${WRKSRC}/src/pinforc ${PREFIX}/share/examples/ |