diff options
author | adrianp <adrianp> | 2004-10-04 17:25:51 +0000 |
---|---|---|
committer | adrianp <adrianp> | 2004-10-04 17:25:51 +0000 |
commit | 3da587ac5d449cbf93631d5454ece3349cf446eb (patch) | |
tree | 9cce752d4d774dc79c9bbf5988052df692a865a2 /security/nessus-libraries | |
parent | aa68ea828cde8340aafb1c6ad0d372886ce49504 (diff) | |
download | pkgsrc-3da587ac5d449cbf93631d5454ece3349cf446eb.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/nessus-libraries')
-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} |