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

Unified Diff: client/deps/systemtap/systemtap.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/deps/systemtap/common.py ('k') | client/profilers/blktrace/blktrace.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/systemtap/systemtap.py
diff --git a/client/deps/systemtap/systemtap.py b/client/deps/systemtap/systemtap.py
index f6c34d74e05020e69f6b70f757385cfaaac50ab4..4504dfab216e2f7f8bfe5a70194d30493b0ca1ec 100755
--- a/client/deps/systemtap/systemtap.py
+++ b/client/deps/systemtap/systemtap.py
@@ -1,7 +1,6 @@
#!/usr/bin/python
import os
-import common
import shutil
from autotest_lib.client.bin import utils
@@ -12,10 +11,10 @@ def setup(topdir):
os.chdir(srcdir)
- utils.system('./configure --with-elfutils=elfutils ' \
- '--prefix=%s/systemtap' % topdir)
- utils.system('make -j %d' % utils.count_cpus())
- utils.system('make install')
+ utils.configure('--with-elfutils=elfutils ' \
+ '--prefix=%s/systemtap' % topdir)
+ utils.make('-j %d' % utils.count_cpus())
+ utils.make('install')
os.chdir(topdir)
« no previous file with comments | « client/deps/systemtap/common.py ('k') | client/profilers/blktrace/blktrace.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698