https://bugs.webkit.org/show_bug.cgi?id=140339
Reviewed by Mark Rowe.
* Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
prevents unnecessary rebuilding due to PATH differences.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@178241
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-01-10 Dan Bernstein <mitz@apple.com>
+
+ [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
+ https://bugs.webkit.org/show_bug.cgi?id=140339
+
+ Reviewed by Mark Rowe.
+
+ * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
+ prevents unnecessary rebuilding due to PATH differences.
+
2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>
[GTK][ThreadedCompositor] Add support for threaded compositor.
export DSYMUTIL_NUM_THREADS = $(shell sysctl -n hw.activecpu)
+# Run xcodebuild with the same PATH with which the Xcode IDE runs, to mitigate unnecessary rebuilds due to PATH differences.
+# See <rdar://problem/16466196>.
+export PATH = $(shell getconf PATH)
+
all: set_asan_configuration
( $(SET_COLOR_DIAGNOSTICS_ARG); xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} )