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

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

Issue 3554003: Merge remote branch 'cros/upstream' into tempbranch3 (Closed) Base URL: http://git.chromium.org/git/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 2718af1fc967d653c89ef040034164166b260324..a391be39696555a2d3dd323d47416832b60c863b 100755
--- a/client/deps/boottool/boottool.py
+++ b/client/deps/boottool/boottool.py
@@ -1,7 +1,6 @@
#!/usr/bin/python
import os
-import common
from autotest_lib.client.bin import utils
# To use this, you have to set PERL5LIB to:
@@ -16,9 +15,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.system ('make')
- utils.system ('make install')
+ utils.system('perl Makefile.PL PREFIX=' + topdir)
+ utils.make()
+ utils.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