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

Unified Diff: client/deps/boottool/boottool.py

Issue 3541002: Revert "Merge remote branch 'cros/upstream' into tempbranch2" (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git
Patch Set: Created 10 years, 3 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 | « client/common_lib/utils_unittest.py ('k') | client/deps/boottool/common.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/boottool/boottool.py
diff --git a/client/deps/boottool/boottool.py b/client/deps/boottool/boottool.py
index a391be39696555a2d3dd323d47416832b60c863b..2718af1fc967d653c89ef040034164166b260324 100755
--- a/client/deps/boottool/boottool.py
+++ b/client/deps/boottool/boottool.py
@@ -1,6 +1,7 @@
#!/usr/bin/python
import os
+import common
from autotest_lib.client.bin import utils
# To use this, you have to set PERL5LIB to:
@@ -15,9 +16,9 @@ def setup(tarball, topdir):
srcdir = os.path.join(topdir, 'src')
utils.extract_tarball_to_dir(tarball, srcdir)
os.chdir(srcdir)
- utils.system('perl Makefile.PL PREFIX=' + topdir)
- utils.make()
- utils.make('install')
+ utils.system ('perl Makefile.PL PREFIX=' + topdir)
+ utils.system ('make')
+ utils.system ('make install')
os.chdir(topdir)
« no previous file with comments | « client/common_lib/utils_unittest.py ('k') | client/deps/boottool/common.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698