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

Unified Diff: build/android/envsetup_functions.sh

Issue 12327031: Fix minor issue with build/android/envsetup.sh (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/android/envsetup_functions.sh
diff --git a/build/android/envsetup_functions.sh b/build/android/envsetup_functions.sh
index 50eb3cc47071dae003abeef2607534d44e7e9eed..b6cff269becbd6a63a23bb6277ebe19fb3833fe2 100755
--- a/build/android/envsetup_functions.sh
+++ b/build/android/envsetup_functions.sh
@@ -135,7 +135,7 @@ common_gyp_vars() {
export GYP_DEFINES="${DEFINES}"
# Set GYP_GENERATORS to ninja if it's currently unset or null.
- if [ -z $GYP_GENERATORS ]; then
+ if [ -z "$GYP_GENERATORS" ]; then
echo "Defaulting GYP_GENERATORS to ninja."
GYP_GENERATORS=ninja
elif [ "$GYP_GENERATORS" != "ninja" ]; then
« 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