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

Unified Diff: build/install-build-deps.sh

Issue 13532003: Installing Chrome OS fonts fails when repo is on filer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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
« 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: build/install-build-deps.sh
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh
index f2c1257a13f211732610d1d1811ee04447978f6a..b8ec90ea26215350ed9ea2ea7e7e9d7af0a10b3c 100755
--- a/build/install-build-deps.sh
+++ b/build/install-build-deps.sh
@@ -206,9 +206,14 @@ fi
# Install the Chrome OS default fonts.
if test "$do_inst_chromeos_fonts" != "0"; then
+ echo
echo "Installing Chrome OS fonts."
+ echo "To skip: run with command line option --no-chromeos-fonts."
dir=`echo $0 | sed -r -e 's/\/[^/]+$//'`
- sudo $dir/linux/install-chromeos-fonts.py
+ cp $dir/linux/install-chromeos-fonts.py /tmp
+ sudo chmod 0555 /tmp/install-chromeos-fonts.py
Daniel Erat 2013/04/03 14:38:34 why do you need to use sudo when chmod-ing and rm-
sschmitz 2013/04/03 15:10:45 Good point. Removed. And using chmod a+x instead.
+ sudo /tmp/install-chromeos-fonts.py
+ sudo rm /tmp/install-chromeos-fonts.py
else
echo "Skipping installation of Chrome OS fonts."
fi
« 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