gwt incubator is being deprecated, so remove it from the list of libraries when compiling gwt apps.
Signed-off-by: Cleber Rosa <[email protected]> --- utils/compile_gwt_clients.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/compile_gwt_clients.py b/utils/compile_gwt_clients.py index 67108bc..e9aa86a 100755 --- a/utils/compile_gwt_clients.py +++ b/utils/compile_gwt_clients.py @@ -15,9 +15,9 @@ _TMP_COMPILE_DIR = _DEFAULT_INSTALL_DIR + '.new' _COMPILE_LINE = ('java -Xmx512M ' '-cp "%(app_dir)s/src:%(app_dir)s/bin:%(gwt_dir)s/gwt-user.jar' - ':%(gwt_dir)s/gwt-dev.jar:%(gwt_dir)s/gwt-incubator.jar" ' - '-Djava.awt.headless=true com.google.gwt.dev.Compiler ' - '-war "%(compile_dir)s" %(extra_args)s %(project_client)s') + ':%(gwt_dir)s/gwt-dev.jar" -Djava.awt.headless=true ' + 'com.google.gwt.dev.Compiler -war "%(compile_dir)s" ' + '%(extra_args)s %(project_client)s') class CompileClientsLoggingConfig(logging_config.LoggingConfig): def configure_logging(self, results_dir=None, verbose=False): -- 1.7.4.4 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
