# HG changeset patch # User Gilles Duboscq # Date 1436977414 -7200 # Node ID 751a0882cb7e900720e4644a02584cd996daff77 # Parent eba3c86372951d3a483b13bb2514119818931d7e mx makefile: Remove dead code diff -r eba3c8637295 -r 751a0882cb7e mx.graal/mx_graal_makefile.py --- a/mx.graal/mx_graal_makefile.py Wed Jul 15 16:09:16 2015 +0200 +++ b/mx.graal/mx_graal_makefile.py Wed Jul 15 18:23:34 2015 +0200 @@ -55,8 +55,7 @@ if opts.selectedDists == None or len(opts.selectedDists) == 0: opts.selectedDists = [d.name for d in mx_graal._jdkDeployedDists if d.partOfHotSpot] mf = Makefile() - commandline = " ".join(["mx.sh", "makefile"] + args) - if do_build_makefile(mf, opts.selectedDists, commandline): + if do_build_makefile(mf, opts.selectedDists): contents = mf.generate() if opts.output == None: print contents @@ -153,7 +152,7 @@ -def do_build_makefile(mf, selectedDists, commandline): +def do_build_makefile(mf, selectedDists): java = mx.java() bootClassPath = java.bootclasspath() bootClassPath = bootClassPath.replace(os.path.realpath(java.jdk), "$(ABS_BOOTDIR)")