comparison mxtool/mx.py @ 16875:73d994651fcd

fixed regression when building original VM without a Java build beforehand
author Doug Simon <doug.simon@oracle.com>
date Thu, 21 Aug 2014 12:01:35 +0200
parents 0d987db807df
children a04d9cbc149f
comparison
equal deleted inserted replaced
16874:3044a847fe91 16875:73d994651fcd
2514 if len(failed): 2514 if len(failed):
2515 for t in failed: 2515 for t in failed:
2516 log('Compiling {} failed'.format(t.proj.name)) 2516 log('Compiling {} failed'.format(t.proj.name))
2517 abort('{} Java compilation tasks failed'.format(len(failed))) 2517 abort('{} Java compilation tasks failed'.format(len(failed)))
2518 2518
2519 for dist in sorted_dists(): 2519 if args.java:
2520 if dist not in updatedAnnotationProcessorDists: 2520 for dist in sorted_dists():
2521 archive(['@' + dist.name]) 2521 if dist not in updatedAnnotationProcessorDists:
2522 archive(['@' + dist.name])
2522 2523
2523 if suppliedParser: 2524 if suppliedParser:
2524 return args 2525 return args
2525 return None 2526 return None
2526 2527