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

Unified Diff: client/profilers/oprofile/oprofile.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/profilers/lttng/lttng.py ('k') | client/profilers/perf/perf.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/profilers/oprofile/oprofile.py
diff --git a/client/profilers/oprofile/oprofile.py b/client/profilers/oprofile/oprofile.py
index 379e07e74624f2d5a972ef8ca78db63ccc30b28d..2d03e317d93c7eff3c7eb8d50ee1a28f5ab23360 100644
--- a/client/profilers/oprofile/oprofile.py
+++ b/client/profilers/oprofile/oprofile.py
@@ -40,10 +40,10 @@ class oprofile(profiler.profiler):
patch = os.path.join(self.bindir,"oprofile-69455.patch")
utils.system('patch -p1 < %s' % patch)
- utils.system('./configure --with-kernel-support --prefix=' + \
+ utils.configure('--with-kernel-support --prefix=' + \
self.srcdir)
- utils.system('make -j %d' % utils.count_cpus())
- utils.system('make install')
+ utils.make('-j %d' % utils.count_cpus())
+ utils.make('install')
except:
# Build from source failed.
# But maybe can still use the local copy
« no previous file with comments | « client/profilers/lttng/lttng.py ('k') | client/profilers/perf/perf.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698