fix(bin/lmake): remove debugging messages

This commit is contained in:
Soonho Kong 2014-08-13 21:04:56 -07:00
parent 75be034d3d
commit 6f062a005e

View file

@ -152,8 +152,6 @@ def call_makefile(directory, makefile, makefile_options, args, lean_options):
if directory:
cmd += ["-C", directory]
cmd += makefile_options
print "LEAN_OPTIONS =", env_copy['LEAN_OPTIONS']
print "CMD =", cmd
for arg in args:
target = get_target(arg)
cmd.append(target)
@ -199,7 +197,6 @@ def extract_makefile_options(args):
makefile_options.append("-j")
elif args.jobs:
makefile_options += ["-j", args.jobs]
print makefile_options
return makefile_options
def main(argv=None):