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

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

Powered by Google App Engine
This is Rietveld 408576698