blob: fc87048c32704548a07e44aab8fcf1ce5ba5a933 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import sys
import os
import argparse
import subprocess
import platform
def fix_files(args):
args = args[:]
parser = argparse.ArgumentParser()
parser.add_argument('--build-root', default=None)
args, tail = parser.parse_known_args(args)
for idx, arg in list(enumerate(tail)):
if arg.startswith('@') and os.path.isfile(arg[1:]):
with open(arg[1:]) as f:
fixed = [i.strip() for i in f]
if args.build_root:
fixed = [os.path.join(args.build_root, i) for ln in fixed for i in ln.split(os.path.pathsep)]
fixed = os.pathsep.join([i.strip() for i in fixed])
fixed_name = list(os.path.splitext(arg))
fixed_name[0] += '_fixed'
fixed_name = ''.join(fixed_name)
with open(fixed_name[1:], 'w') as f:
f.write(fixed)
tail[idx:idx + 1] = [fixed_name]
return tail
if __name__ == '__main__':
args = fix_files(sys.argv[1:])
if platform.system() == 'Windows':
sys.exit(subprocess.Popen(args).wait())
else:
os.execv(args[0], args)
|