Changes between Initial Version and Version 1 of Ticket #52200, comment 3
- Timestamp:
- Sep 10, 2016, 4:23:57 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #52200, comment 3
initial v1 1 1 xcrun wasn't deprecated in Xcode 8, it was removed. It was removed from within Xcode.app because it was redundant to the system-provided version. 2 2 3 That particular `reinplace` isn't optimal. You should be replacing ` /usr/bin/xcrun -find xcrun` with `/usr/bin/xcrun` rather than `/usr/bin/xcrun -find /usr/bin/xcrun`3 That particular `reinplace` isn't optimal. You should be replacing `$(/usr/bin/xcrun -find xcrun)` with `/usr/bin/xcrun` rather than `$(/usr/bin/xcrun -find /usr/bin/xcrun)` 4 4 5 5 Also, this should be done as a patch instead of a `reinplace` and upstreamed to benefit others.