mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 12:31:10 +00:00
a couple fixes pointed out by raorn (thanks)
This commit is contained in:
parent
972bd8852b
commit
0c511d3da5
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ def parse_pragma (pragma, args):
|
||||||
if pragma == 'PROGS_DAT':
|
if pragma == 'PROGS_DAT':
|
||||||
progs_dat = parse_filename (args)
|
progs_dat = parse_filename (args)
|
||||||
elif pragma == 'PROGS_SRC':
|
elif pragma == 'PROGS_SRC':
|
||||||
progs_dat = parse_filename (args)
|
progs_src = parse_filename (args)
|
||||||
elif pragma == 'DONT_COMPILE_THIS_FILE':
|
elif pragma == 'DONT_COMPILE_THIS_FILE':
|
||||||
compile_this_file = 0
|
compile_this_file = 0
|
||||||
elif pragma == 'COMPILE_THIS_FILE':
|
elif pragma == 'COMPILE_THIS_FILE':
|
||||||
|
@ -211,7 +211,7 @@ for l in qcc_list:
|
||||||
f.close ()
|
f.close ()
|
||||||
args = sys.argv[1:]
|
args = sys.argv[1:]
|
||||||
if not verbose:
|
if not verbose:
|
||||||
args = ["--quiet=2"] + args
|
args = ["--quiet"] + args
|
||||||
args = ["qfcc"] + args
|
args = ["qfcc"] + args
|
||||||
if not os.fork():
|
if not os.fork():
|
||||||
os.execvp ("qfcc", args)
|
os.execvp ("qfcc", args)
|
||||||
|
|
Loading…
Reference in a new issue