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

Unified Diff: start_devserver

Issue 2907005: Use PKG_INSTALL_MASK to prevent debug symbols from getting into the binpkg. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git
Patch Set: Remove duplicate mask and add a comment. Created 10 years, 5 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: start_devserver
diff --git a/start_devserver b/start_devserver
index f82b2cd25de1a945c8b8b541099ea5c9f2600ae8..bfee40eef6c4303ef90cdb841f4456cf161f1349 100755
--- a/start_devserver
+++ b/start_devserver
@@ -33,4 +33,10 @@ else
echo "!!! devserver will only handle request from memento_updater"
fi
+# Set PKG_INSTALL_MASK if it's not set already.
+if [ -z "${PKG_INSTALL_MASK+x}" ]; then
+ export PKG_INSTALL_MASK="${DEFAULT_INSTALL_MASK}"
+fi
+echo PKG_INSTALL_MASK=$PKG_INSTALL_MASK
+
cd ${GCLIENT_ROOT}/src/platform/dev && python devserver.py ${CLIENT_PREFIX} $*
« 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