# HG changeset patch # User Bernhard Urban # Date 1366193044 -7200 # Node ID 0b7d9bcc0f443110916f7f88945faacd764ce7fe # Parent 4b0cb32b0a25d3ada0686e3a47b55f2015dba8b3 javac: remove encoding parameter diff -r 4b0cb32b0a25 -r 0b7d9bcc0f44 make/build-graal.xml --- a/make/build-graal.xml Wed Apr 17 15:59:11 2013 +0200 +++ b/make/build-graal.xml Wed Apr 17 12:04:04 2013 +0200 @@ -31,7 +31,7 @@ - + diff -r 4b0cb32b0a25 -r 0b7d9bcc0f44 mx/commands.py --- a/mx/commands.py Wed Apr 17 15:59:11 2013 +0200 +++ b/mx/commands.py Wed Apr 17 12:04:04 2013 +0200 @@ -468,7 +468,7 @@ out.open('target', {'name' : 'compile', 'depends' : 'cleanclasses'}) out.element('mkdir', {'dir' : '${classes.dir}'}) - out.open('javac', {'destdir' : '${classes.dir}', 'debug' : 'on', 'includeantruntime' : 'false', 'encoding' : 'UTF-8'}) + out.open('javac', {'destdir' : '${classes.dir}', 'debug' : 'on', 'includeantruntime' : 'false', }) for p in mx.sorted_deps(mx.distribution('GRAAL').deps): out.element('src', {'path' : '${src.dir}/' + p.name})