Home | History | Annotate | Download | only in iwcap
      1 #!/usr/bin/python
      2 
      3 import os, common
      4 from autotest_lib.client.bin import utils
      5 
      6 version = 1
      7 
      8 def setup(topdir):
      9     srcdir = os.path.join(topdir, 'src')
     10     os.chdir(srcdir)
     11     utils.system('make BINDIR=%s install' % (topdir))
     12     os.chdir(topdir)
     13 
     14 pwd = os.getcwd()
     15 utils.update_version(pwd + '/src', True, version, setup, pwd)
     16