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

Unified Diff: make.py

Issue 1273793003: Fix make.py: BUILDTYPE (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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: make.py
diff --git a/make.py b/make.py
index fcf81b59463b0c1d479156eaff14cae1203484a9..d7bda84931b2079fe872ff23431f00ee282f8604 100644
--- a/make.py
+++ b/make.py
@@ -17,7 +17,7 @@ import os
import shutil
import sys
-BUILDTYPE = 'Debug'
+BUILDTYPE = os.environ.get('BUILDTYPE', 'Debug')
# special targets
TARGET_ALL = 'all'
« 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