summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--theme-compiler/src/com/vaadin/buildhelpers/CompileTheme.java2
-rw-r--r--themes-compiled/build.xml1
2 files changed, 2 insertions, 1 deletions
diff --git a/theme-compiler/src/com/vaadin/buildhelpers/CompileTheme.java b/theme-compiler/src/com/vaadin/buildhelpers/CompileTheme.java
index d2c64602ab..cb3f9abbe5 100644
--- a/theme-compiler/src/com/vaadin/buildhelpers/CompileTheme.java
+++ b/theme-compiler/src/com/vaadin/buildhelpers/CompileTheme.java
@@ -33,7 +33,7 @@ public class CompileTheme {
"the version to add to the compiled theme");
options.addOption("f", "theme-folder", true,
"the folder containing the theme");
- options.addOption("s", "sprites", true, "use smartsprites");
+ options.addOption("s", "sprites", false, "use smartsprites");
CommandLineParser parser = new PosixParser();
CommandLine params = parser.parse(options, args);
if (!params.hasOption("theme") || !params.hasOption("theme-folder")) {
diff --git a/themes-compiled/build.xml b/themes-compiled/build.xml
index b5e27c882f..69ca9cff67 100644
--- a/themes-compiled/build.xml
+++ b/themes-compiled/build.xml
@@ -80,6 +80,7 @@
<arg value="${theme.result.dir}" />
<arg value="--theme-version" />
<arg value="${vaadin.version}" />
+ <arg value="--sprites" />
<jvmarg value="-Xss8M" />
<jvmarg value="-XX:MaxPermSize=256M" />
<jvmarg value="-Djava.awt.headless=true" />