comparison mx/mx_graal.py @ 16676:07a4ed7c66a3

mx_graal: do not install jdk jars twice when building (which should prevent duplicate GeneratedSourcesSha1 class in graal-truffle.jar)
author Doug Simon <doug.simon@oracle.com>
date Sat, 02 Aug 2014 11:11:56 +0200
parents be59a1d39281
children b002c864e974
comparison
equal deleted inserted replaced
16675:0fc43b066eee 16676:07a4ed7c66a3
763 if build == 'ide-build-target': 763 if build == 'ide-build-target':
764 build = os.environ.get('IDE_BUILD_TARGET', None) 764 build = os.environ.get('IDE_BUILD_TARGET', None)
765 if build is None or len(build) == 0: 765 if build is None or len(build) == 0:
766 continue 766 continue
767 767
768 jdk = _jdk(build, create=True) 768 jdk = _jdk(build, create=True, installJars=not opts2.java)
769 769
770 if vm == 'original': 770 if vm == 'original':
771 if build != 'product': 771 if build != 'product':
772 mx.log('only product build of original VM exists') 772 mx.log('only product build of original VM exists')
773 continue 773 continue