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