| 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.
 | 
| 
 |