You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
331 B
16 lines
331 B
#!/usr/bin/python2
|
|
|
|
import os, common
|
|
from autotest_lib.client.bin import utils
|
|
|
|
version = 1
|
|
|
|
def setup(topdir):
|
|
srcdir = os.path.join(topdir, 'src')
|
|
os.chdir(srcdir)
|
|
utils.system('make BINDIR=%s install' % (topdir))
|
|
os.chdir(topdir)
|
|
|
|
pwd = os.getcwd()
|
|
utils.update_version(pwd + '/src', True, version, setup, pwd)
|