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

Unified Diff: chrome/tools/build/mac/keystone_install.sh

Issue 450004: Merge r33259 from the trunk to the 249 branch.... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/249/src/
Patch Set: Created 11 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/mac/keystone_install.sh
===================================================================
--- chrome/tools/build/mac/keystone_install.sh (revision 33259)
+++ chrome/tools/build/mac/keystone_install.sh (working copy)
@@ -23,6 +23,13 @@
set -e
+# http://b/2290916: Keystone runs the installation with a restrictive PATH
+# that only includes the directory containing ksadmin, /bin, and /usr/bin. It
+# does not include /sbin or /usr/sbin. This script uses lsof, which is in
+# /usr/sbin, and it's conceivable that it might want to use other tools in an
+# sbin directory. Adjust the path accordingly.
+export PATH="${PATH}:/sbin:/usr/sbin"
+
# Returns 0 (true) if the parameter exists, is a symbolic link, and appears
# writable on the basis of its POSIX permissions. This is used to determine
# writeability like test's -w primary, but -w resolves symbolic links and this
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698