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

Unified Diff: client/deps/dejagnu/dejagnu.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/dejagnu/common.py ('k') | client/deps/libaio/common.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/dejagnu/dejagnu.py
diff --git a/client/deps/dejagnu/dejagnu.py b/client/deps/dejagnu/dejagnu.py
index 8bfe7b891d6efbab1cbadb62566f8c36dfb638f3..33888f3c81485cbb73ca1a4aecf7804224cdb684 100755
--- a/client/deps/dejagnu/dejagnu.py
+++ b/client/deps/dejagnu/dejagnu.py
@@ -1,7 +1,6 @@
#!/usr/bin/python
import os
-import common
from autotest_lib.client.bin import utils
version = 1
@@ -10,9 +9,9 @@ def setup(tarball, topdir):
srcdir = os.path.join(topdir, 'src')
utils.extract_tarball_to_dir(tarball, 'src')
os.chdir(srcdir)
- utils.system ('./configure --prefix=%s/dejagnu' % topdir)
- utils.system('make')
- utils.system('make install')
+ utils.configure('--prefix=%s/dejagnu' % topdir)
+ utils.make()
+ utils.make('install')
os.chdir(topdir)
« no previous file with comments | « client/deps/dejagnu/common.py ('k') | client/deps/libaio/common.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698