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

Unified Diff: client/deps/mysql/mysql.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/mysql/common.py ('k') | client/deps/pgpool/common.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/mysql/mysql.py
diff --git a/client/deps/mysql/mysql.py b/client/deps/mysql/mysql.py
index d8f00373f96dd6a5448fadeb37c45e964a0faba8..2328d30e5c94fb8e4b6ea3c8ac4f7217a271c822 100755
--- a/client/deps/mysql/mysql.py
+++ b/client/deps/mysql/mysql.py
@@ -1,7 +1,6 @@
#!/usr/bin/python
import os
-import common
from autotest_lib.client.bin import utils
version = 3
@@ -12,10 +11,10 @@ def setup(tarball, topdir):
utils.get_file('http://mirror.x10.com/mirror/mysql/Downloads/MySQL-5.0/mysql-5.0.45.tar.gz', tarball)
utils.extract_tarball_to_dir(tarball, 'src')
os.chdir(srcdir)
- utils.system ('./configure --prefix=%s/mysql --enable-thread-safe-client' \
+ utils.configure('--prefix=%s/mysql --enable-thread-safe-client' \
% topdir)
- utils.system('make -j %d' % utils.count_cpus())
- utils.system('make install')
+ utils.make('-j %d' % utils.count_cpus())
+ utils.make('install')
#
# MySQL doesn't create this directory on it's own.
« no previous file with comments | « client/deps/mysql/common.py ('k') | client/deps/pgpool/common.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698