You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
eaf647f18e
1. calls xcrun, which is 10.8+ only 2. we want to pass in -isysroot if needed closes: https://trac.macports.org/ticket/56666
12 lines
444 B
Diff
12 lines
444 B
Diff
--- setupinfo.py.orig 2018-06-14 13:42:56.000000000 -0700
|
|
+++ setupinfo.py 2018-06-14 13:45:12.000000000 -0700
|
|
@@ -124,7 +124,7 @@
|
|
])
|
|
_library_dirs = _prefer_reldirs(base_dir, library_dirs(static_library_dirs))
|
|
_cflags = cflags(static_cflags)
|
|
- _ldflags = ['-isysroot', get_xcode_isysroot()] if sys.platform == 'darwin' else None
|
|
+ _ldflags = None
|
|
_define_macros = define_macros()
|
|
_libraries = libraries()
|
|
|