comparison mx/mx_graal_makefile.py @ 21949:185d7a9a2cfa

jvmci.make should have a newline at the end
author Doug Simon <doug.simon@oracle.com>
date Fri, 12 Jun 2015 16:13:33 +0200
parents 0458778bb188
children 3ce35131bff2
comparison
equal deleted inserted replaced
21948:0458778bb188 21949:185d7a9a2cfa
286 286
287 if len(dists) > 0: 287 if len(dists) > 0:
288 mf.add_definition(jdkBootClassPathVariableName + " = " + bootClassPath) 288 mf.add_definition(jdkBootClassPathVariableName + " = " + bootClassPath)
289 for d in ap: make_dist_rule(d, mf) 289 for d in ap: make_dist_rule(d, mf)
290 for d in dists: make_dist_rule(d, mf) 290 for d in dists: make_dist_rule(d, mf)
291 mf.add_rule("default: $({}_JAR)\n.PHONY: default".format("_JAR) $(".join([d.name for d in dists]))) 291 mf.add_rule("default: $({}_JAR)\n.PHONY: default\n".format("_JAR) $(".join([d.name for d in dists])))
292 return True 292 return True
293 else: 293 else:
294 for d in dists: 294 for d in dists:
295 selectedDists.remove(d.name) 295 selectedDists.remove(d.name)
296 print "Distribution(s) '" + "', '".join(selectedDists) + "' does not exist." 296 print "Distribution(s) '" + "', '".join(selectedDists) + "' does not exist."