# HG changeset patch # User Bernhard Urban # Date 1398433620 -7200 # Node ID 27fa615f5a1ceefbaa7cb1b41ff8987d29a43f64 # Parent 619e823d69c416af67f12544ea7b26aed3d9b4b7 mx export: fix VM() usage diff -r 619e823d69c4 -r 27fa615f5a1c mx/mx_graal.py --- a/mx/mx_graal.py Fri Apr 25 12:01:29 2014 +0200 +++ b/mx/mx_graal.py Fri Apr 25 15:47:00 2014 +0200 @@ -175,7 +175,7 @@ tmp = tempfile.mkdtemp(prefix='tmp', dir=_graal_home) if args.vmbuild: # Make sure the product VM binary is up to date - with VM(vmbuild='product'): + with VM(build='product'): build([]) mx.log('Copying Java sources and mx files...')