diff options
author | adrianp <adrianp@pkgsrc.org> | 2004-10-04 17:25:51 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2004-10-04 17:25:51 +0000 |
commit | 9fc77e69efbc19c6f17dd82bc9254e1cf20f823c (patch) | |
tree | 9cce752d4d774dc79c9bbf5988052df692a865a2 /security | |
parent | 146aff0f3f0e581dacf51e980df70ab68f62970a (diff) | |
download | pkgsrc-9fc77e69efbc19c6f17dd82bc9254e1cf20f823c.tar.gz |
On certain OS'es (e.g. Darwin) CPP can be defined as "gcc -E -no-cpp-precomp".
So when it comes to do the building of the package this causes it to fail if
it is not enclosed in double-quotes.
Diffstat (limited to 'security')
-rw-r--r-- | security/nessus-libraries/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nessus-libraries/Makefile b/security/nessus-libraries/Makefile index 877439ff743..ca026087056 100644 --- a/security/nessus-libraries/Makefile +++ b/security/nessus-libraries/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2004/10/03 00:18:10 tv Exp $ +# $NetBSD: Makefile,v 1.19 2004/10/04 17:25:51 adrianp Exp $ DISTNAME= nessus-libraries-${VERS} PKGREVISION= 1 @@ -13,7 +13,7 @@ USE_LIBTOOL= yes BUILD_DEPENDS+= bison-[0-9]*:../../devel/bison GNU_CONFIGURE= yes -CONFIGURE_ENV+= CPP=${CPP} +CONFIGURE_ENV+= CPP="${CPP}" CONFIGURE_ARGS+= --enable-zlib=${BUILDLINK_PREFIX.zlib}/lib \ --localstatedir=${VARBASE} |