blob: f6c34d74e05020e69f6b70f757385cfaaac50ab4 [file] [log] [blame]
mblighdff22452009-04-17 20:21:21 +00001#!/usr/bin/python
2
3import os
Benson Leung517d95a2010-09-28 18:00:17 -07004import common
mblighdff22452009-04-17 20:21:21 +00005import shutil
6from autotest_lib.client.bin import utils
7
8version = 1
9
mbligh49440ea2009-11-06 03:09:50 +000010def setup(topdir):
mblighdff22452009-04-17 20:21:21 +000011 srcdir = os.path.join(topdir, 'src')
12
mblighdff22452009-04-17 20:21:21 +000013 os.chdir(srcdir)
14
Benson Leung517d95a2010-09-28 18:00:17 -070015 utils.system('./configure --with-elfutils=elfutils ' \
16 '--prefix=%s/systemtap' % topdir)
17 utils.system('make -j %d' % utils.count_cpus())
18 utils.system('make install')
mblighdff22452009-04-17 20:21:21 +000019
20 os.chdir(topdir)
21
22pwd = os.getcwd()
mbligh49440ea2009-11-06 03:09:50 +000023utils.update_version(pwd+'/src', True, version, setup, pwd)