summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlmr <lmr@592f7852-d20e-0410-864c-8624ca9c26a4>2011-06-16 15:47:56 +0000
committerlmr <lmr@592f7852-d20e-0410-864c-8624ca9c26a4>2011-06-16 15:47:56 +0000
commita6ba6fe510b0e92e8dfe382637cd840b3d3cc0c6 (patch)
treef1f6c1d471fe54a3271c4258338cedbd2c5df5d2
parent4466be5b68b77a5a7e40825ca3b056dd04dc676a (diff)
utils/compile_gwt_clients.py: remove gwt incubator from java classpath
gwt incubator is deprecated, so remove it from the list of libraries when compiling gwt apps. Signed-off-by: Cleber Rosa <crosa@redhat.com> git-svn-id: svn://test.kernel.org/autotest/trunk@5423 592f7852-d20e-0410-864c-8624ca9c26a4
-rwxr-xr-xutils/compile_gwt_clients.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/compile_gwt_clients.py b/utils/compile_gwt_clients.py
index 67108bca..e9aa86a6 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):