| Index: client/deps/boottool/boottool.py
 | 
| diff --git a/client/deps/boottool/boottool.py b/client/deps/boottool/boottool.py
 | 
| index 2718af1fc967d653c89ef040034164166b260324..a391be39696555a2d3dd323d47416832b60c863b 100755
 | 
| --- a/client/deps/boottool/boottool.py
 | 
| +++ b/client/deps/boottool/boottool.py
 | 
| @@ -1,7 +1,6 @@
 | 
|  #!/usr/bin/python
 | 
|  
 | 
|  import os
 | 
| -import common
 | 
|  from autotest_lib.client.bin import utils
 | 
|  
 | 
|  # To use this, you have to set PERL5LIB to:
 | 
| @@ -16,9 +15,9 @@ def setup(tarball, topdir):
 | 
|      srcdir = os.path.join(topdir, 'src')
 | 
|      utils.extract_tarball_to_dir(tarball, srcdir)
 | 
|      os.chdir(srcdir)
 | 
| -    utils.system ('perl Makefile.PL PREFIX=' + topdir)
 | 
| -    utils.system ('make')
 | 
| -    utils.system ('make install')
 | 
| +    utils.system('perl Makefile.PL PREFIX=' + topdir)
 | 
| +    utils.make()
 | 
| +    utils.make('install')
 | 
|      os.chdir(topdir)
 | 
|  
 | 
|  
 | 
| 
 |