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

Unified Diff: client/deps/systemtap/systemtap.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/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 4504dfab216e2f7f8bfe5a70194d30493b0ca1ec..f6c34d74e05020e69f6b70f757385cfaaac50ab4 100755
--- a/client/deps/systemtap/systemtap.py
+++ b/client/deps/systemtap/systemtap.py
@@ -1,6 +1,7 @@
#!/usr/bin/python
import os
+import common
import shutil
from autotest_lib.client.bin import utils
@@ -11,10 +12,10 @@ def setup(topdir):
os.chdir(srcdir)
- utils.configure('--with-elfutils=elfutils ' \
- '--prefix=%s/systemtap' % topdir)
- utils.make('-j %d' % utils.count_cpus())
- utils.make('install')
+ utils.system('./configure --with-elfutils=elfutils ' \
+ '--prefix=%s/systemtap' % topdir)
+ utils.system('make -j %d' % utils.count_cpus())
+ utils.system('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