diff options
author | wiz <wiz> | 2005-03-02 13:39:17 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-03-02 13:39:17 +0000 |
commit | 48f17794fb0294f8b2b3cba22afe0c43e24763d8 (patch) | |
tree | dd8127968dde3ae927b558367cf0e64ff20173ed | |
parent | cae263114dbcdcf1f674ffabfec473f85160f6a1 (diff) | |
download | pkgsrc-48f17794fb0294f8b2b3cba22afe0c43e24763d8.tar.gz |
Fix quoting in CPPFLAGS.
-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 9e25a007ab4..2f4d76e0fd1 100644 --- a/misc/pinfo/Makefile +++ b/misc/pinfo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2004/10/03 00:13:00 tv Exp $ +# $NetBSD: Makefile,v 1.21 2005/03/02 13:39:17 wiz Exp $ # DISTNAME= pinfo-0.6.1 @@ -19,7 +19,7 @@ USE_PKGINSTALL= yes INFO_FILES= pinfo.info -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\"" CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} |