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

Unified Diff: client/deps/libcap/libcap.py

Issue 3511003: Merge remote branch 'cros/upstream' into tempbranch2 (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
Index: client/deps/libcap/libcap.py
diff --git a/client/deps/libcap/libcap.py b/client/deps/libcap/libcap.py
index d599efe690d255201158497e6f12eed1de3688f3..d31c8f91ad045bda714e9b1035765eff5425e778 100755
--- a/client/deps/libcap/libcap.py
+++ b/client/deps/libcap/libcap.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
-import os, common
+import os
from autotest_lib.client.bin import utils
version = 2
@@ -9,7 +9,7 @@ def setup(srcdir, tarball='libcap-2.16.tar.gz'):
topdir = os.getcwd()
utils.extract_tarball_to_dir(tarball, srcdir)
os.chdir(srcdir)
- utils.system('make -C libcap LIBATTR=no')
+ utils.make('-C libcap LIBATTR=no')
os.chdir(topdir)
srcdir = os.path.abspath('./src')

Powered by Google App Engine
This is Rietveld 408576698