fix(bin/lmake): remove debugging messages
This commit is contained in:
parent
75be034d3d
commit
6f062a005e
1 changed files with 0 additions and 3 deletions
|
@ -152,8 +152,6 @@ def call_makefile(directory, makefile, makefile_options, args, lean_options):
|
||||||
if directory:
|
if directory:
|
||||||
cmd += ["-C", directory]
|
cmd += ["-C", directory]
|
||||||
cmd += makefile_options
|
cmd += makefile_options
|
||||||
print "LEAN_OPTIONS =", env_copy['LEAN_OPTIONS']
|
|
||||||
print "CMD =", cmd
|
|
||||||
for arg in args:
|
for arg in args:
|
||||||
target = get_target(arg)
|
target = get_target(arg)
|
||||||
cmd.append(target)
|
cmd.append(target)
|
||||||
|
@ -199,7 +197,6 @@ def extract_makefile_options(args):
|
||||||
makefile_options.append("-j")
|
makefile_options.append("-j")
|
||||||
elif args.jobs:
|
elif args.jobs:
|
||||||
makefile_options += ["-j", args.jobs]
|
makefile_options += ["-j", args.jobs]
|
||||||
print makefile_options
|
|
||||||
return makefile_options
|
return makefile_options
|
||||||
|
|
||||||
def main(argv=None):
|
def main(argv=None):
|
||||||
|
|
Loading…
Reference in a new issue