Fri Sep 9 10:58:15 2022 UTC ()
bootstrap: Remove old -isystem hack on macOS.

This was introduced many years ago in PR#26143 to try and work around a
misconfiguration in how Apple's GCC was built at the time.  Newer compilers no
longer look in /usr/local/include, and this workaround can now be harmful when
trying to pick a specific SDK to build against.


(jperkin)
diff -r1.312 -r1.313 pkgsrc/bootstrap/bootstrap

cvs diff -r1.312 -r1.313 pkgsrc/bootstrap/bootstrap (expand / switch to context diff)
--- pkgsrc/bootstrap/bootstrap 2022/06/16 22:12:20 1.312
+++ pkgsrc/bootstrap/bootstrap 2022/09/09 10:58:15 1.313
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# $NetBSD: bootstrap,v 1.312 2022/06/16 22:12:20 charlotte Exp $
+# $NetBSD: bootstrap,v 1.313 2022/09/09 10:58:15 jperkin Exp $
 #
 # Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org>
 # All rights reserved.
@@ -587,7 +587,6 @@
 Darwin)
 	root_group=wheel
 	machine_arch=`get_machine_arch_darwin`
-	CC=${CC:-"cc -isystem /usr/include"}; export CC
 	check_compiler=yes
 
 	# Combine major.minor product version for simpler numerical tests.