diff options
author | zuntum <zuntum> | 2001-03-31 12:13:37 +0000 |
---|---|---|
committer | zuntum <zuntum> | 2001-03-31 12:13:37 +0000 |
commit | d450d2ff9d62029deae172afe9f8a80d3ab6d136 (patch) | |
tree | 7ad103fefa4d9168de6a995fee9ca2fc35a046f2 /textproc/opensp | |
parent | 00e173ee7b2a11dece25d4e564bd8f3d835bc1a2 (diff) | |
download | pkgsrc-d450d2ff9d62029deae172afe9f8a80d3ab6d136.tar.gz |
o CC=gcc -> CC="${CC}"
o fix quoting
Diffstat (limited to 'textproc/opensp')
-rw-r--r-- | textproc/opensp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/opensp/Makefile b/textproc/opensp/Makefile index 279e468549e..2f3932f871f 100644 --- a/textproc/opensp/Makefile +++ b/textproc/opensp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/02/17 17:37:35 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2001/03/31 12:13:37 zuntum Exp $ # DISTNAME= OpenSP-1.4 @@ -17,7 +17,7 @@ CONFLICTS+= sp-* GNU_CONFIGURE= YES CONFIGURE_ARGS+=--enable-http \ --enable-default-catalog=${PREFIX}/share/sgml/catalog -CONFIGURE_ENV+= CC=${LOCALBASE}/pthreads/bin/pgcc \ - CXX=${LOCALBASE}/pthreads/bin/pg++ +CONFIGURE_ENV+= CC="${LOCALBASE}/pthreads/bin/pgcc" \ + CXX="${LOCALBASE}/pthreads/bin/pg++" .include "../../mk/bsd.pkg.mk" |