diff options
author | wiz <wiz@pkgsrc.org> | 2013-02-04 15:53:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2013-02-04 15:53:16 +0000 |
commit | 326f204e8cbe9644242ca97a93b883a2e668fcee (patch) | |
tree | d0ca1c0d553f8d6a37890d178ac0024eb491e525 /mk/platform/Darwin.mk | |
parent | d68f5c698c2e6e36c4973872ed634ad6315c359a (diff) | |
download | pkgsrc-326f204e8cbe9644242ca97a93b883a2e668fcee.tar.gz |
Remove "-no-cpp-precomp" from CPP_PRECOMP_FLAGS.
Obsolete since about Darwin-4.4.
Per Jason Bacon in PR 47531.
Diffstat (limited to 'mk/platform/Darwin.mk')
-rw-r--r-- | mk/platform/Darwin.mk | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mk/platform/Darwin.mk b/mk/platform/Darwin.mk index e732f9f73f3..989e272e380 100644 --- a/mk/platform/Darwin.mk +++ b/mk/platform/Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: Darwin.mk,v 1.49 2012/11/19 11:34:15 ryoon Exp $ +# $NetBSD: Darwin.mk,v 1.50 2013/02/04 15:53:16 wiz Exp $ # # Variable definitions for the Darwin operating system. @@ -43,9 +43,8 @@ IMAKEOPTS+= -DInstallFlags=-c # do not set user or group .endif .if !defined(PKGSRC_COMPILER) || !empty(PKGSRC_COMPILER:Mgcc) -# Use the GNU cpp, not the OS X cpp, don't look in "/usr/local/include" -# before "/usr/include". -CPP_PRECOMP_FLAGS?= -no-cpp-precomp -isystem /usr/include +# don't look in "/usr/local/include" before "/usr/include". +CPP_PRECOMP_FLAGS?= -isystem /usr/include # don't symlink to /usr/bin/gcc since the latter is a wrapper that tries # evoke the real (architecture-dependent) gcc binary in the same place # which fails when called via a symlink from a different directory |