Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4410)

Unified Diff: chrome/installer/mac/dirpatcher.sh

Issue 31143002: mac: Use ninja by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« chrome/installer/mac/dirdiffer.sh ('K') | « chrome/installer/mac/dirdiffer.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/mac/dirpatcher.sh
diff --git a/chrome/installer/mac/dirpatcher.sh b/chrome/installer/mac/dirpatcher.sh
index 7b68fcaf3f413ab1e3c46ef9a92ea3828f19e956..b4d0620a580d11df2512fd0e5b75ceae3f0f2af6 100755
--- a/chrome/installer/mac/dirpatcher.sh
+++ b/chrome/installer/mac/dirpatcher.sh
@@ -49,7 +49,7 @@ shopt -s dotglob nullglob
# find_tool looks for an executable file named |tool_name|:
# - in the same directory as this script,
# - if this script is located in a Chromium source tree, at the expected
-# Release output location in the Mac xcodebuild directory,
+# Release output location in the Mac out directory,
# - as above, but in the Debug output location
# If found in any of the above locations, the script's path is output.
# Otherwise, this function outputs |tool_name| as a fallback, allowing it to
@@ -69,13 +69,13 @@ find_tool() {
local script_dir_phys
script_dir_phys="$(cd "${script_dir}" && pwd -P)"
if [[ "${script_dir_phys}" =~ ^(.*)/src/chrome/installer/mac$ ]]; then
- tool="${BASH_REMATCH[1]}/src/xcodebuild/Release/${tool_name}"
+ tool="${BASH_REMATCH[1]}/src/out/Release/${tool_name}"
Mark Mentovai 2013/10/25 12:58:19 Same here.
if [[ -f "${tool}" ]] && [[ -x "${tool}" ]]; then
echo "${tool}"
return
fi
- tool="${BASH_REMATCH[1]}/src/xcodebuild/Debug/${tool_name}"
+ tool="${BASH_REMATCH[1]}/src/out/Debug/${tool_name}"
if [[ -f "${tool}" ]] && [[ -x "${tool}" ]]; then
echo "${tool}"
return
« chrome/installer/mac/dirdiffer.sh ('K') | « chrome/installer/mac/dirdiffer.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698