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

Unified Diff: client/deps/pgsql/pgsql.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/pgsql/common.py ('k') | client/deps/systemtap/common.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/pgsql/pgsql.py
diff --git a/client/deps/pgsql/pgsql.py b/client/deps/pgsql/pgsql.py
index 5df7a8d40553dc3ff4f991f934485dce18245eaa..e1aabf7c49d094ca52ac623cc8721382aa4db8e4 100755
--- a/client/deps/pgsql/pgsql.py
+++ b/client/deps/pgsql/pgsql.py
@@ -1,7 +1,6 @@
#!/usr/bin/python
import os
-import common
from autotest_lib.client.bin import utils
version = 4
@@ -12,9 +11,9 @@ def setup(tarball, topdir):
utils.get_file('ftp://ftp.postgresql.org/pub/source/v8.3.1/postgresql-8.3.1.tar.bz2', tarball)
utils.extract_tarball_to_dir(tarball, 'src')
os.chdir(srcdir)
- utils.system ('./configure --without-readline --without-zlib --enable-debug --prefix=%s/pgsql' % topdir)
- utils.system('make -j %d' % utils.count_cpus())
- utils.system('make install')
+ utils.configure('--without-readline --without-zlib --enable-debug --prefix=%s/pgsql' % topdir)
+ utils.make('-j %d' % utils.count_cpus())
+ utils.make('install')
os.chdir(topdir)
« no previous file with comments | « client/deps/pgsql/common.py ('k') | client/deps/systemtap/common.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698