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 | 77fc11cf7364736d28b99eb988aac4d7b738f95f (patch) | |
tree | d0ca1c0d553f8d6a37890d178ac0024eb491e525 /mk/platform | |
parent | f9757b7549f5df66bf35f99331cddb5878420586 (diff) | |
download | pkgsrc-77fc11cf7364736d28b99eb988aac4d7b738f95f.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')
-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 |