changeset 22228:751a0882cb7e

mx makefile: Remove dead code
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Wed, 15 Jul 2015 18:23:34 +0200
parents eba3c8637295
children a05f318a4a08
files mx.graal/mx_graal_makefile.py
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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)")