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

Unified Diff: masters/master.chromiumos/Makefile

Issue 3777004: Fix imports and bring over a missing file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 10 years, 2 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 | masters/master.chromiumos/master.cfg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromiumos/Makefile
===================================================================
--- masters/master.chromiumos/Makefile (revision 62490)
+++ masters/master.chromiumos/Makefile (working copy)
@@ -24,22 +24,22 @@
# this tests to make sure that the slave is in the known slave location,
# /b/slave, which is what the LaunchAgent operates on.
USE_LAUNCHD := \
- $(shell [ -f ~/Library/LaunchAgents/org.chromium.buildbot.master.chromeos.plist ] && \
- [ "$$(pwd -P)" = "/b/master.chromeos" ] && \
+ $(shell [ -f ~/Library/LaunchAgents/org.chromium.buildbot.master.chromiumos.plist ] && \
+ [ "$$(pwd -P)" = "/b/build/masters/master.chromiumos" ] && \
echo 1)
start:
ifneq ($(USE_LAUNCHD),1)
- PYTHONPATH=../scripts:../scripts/master:../scripts/common:../scripts/private:../pylibs python ../scripts/common/twistd --no_save -y buildbot.tac
+ PYTHONPATH=../../third_party/buildbot_7_12:../../third_party/twisted_8_1:../../scripts:../../third_party:../../site_config:../../../build_internal/site_config:. python ../../scripts/common/twistd --no_save -y buildbot.tac
else
- launchctl start org.chromium.buildbot.master.chromeos
+ launchctl start org.chromium.buildbot.master.chromiumos
endif
stop:
ifneq ($(USE_LAUNCHD),1)
if `test -f twistd.pid`; then kill `cat twistd.pid`; fi;
else
- launchctl stop org.chromium.buildbot.master.chromeos
+ launchctl stop org.chromium.buildbot.master.chromiumos
endif
reconfig:
« no previous file with comments | « no previous file | masters/master.chromiumos/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698