android_mt6572_jiabo/external/autotest/client/deps/iwcap/iwcap.py
2025-09-05 16:56:03 +08:00

15 lines
330 B
Python
Executable file

#!/usr/bin/python
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)