summaryrefslogtreecommitdiffstats
path: root/build/buildhelpers
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2008-12-08 09:16:59 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2008-12-08 09:16:59 +0000
commitf1530bfcff25d44b4bf050c1deb4408f42d05eef (patch)
tree00edc0e3ec25fdc9068ec65cb6d7705c1bbc36da /build/buildhelpers
parent5c52dd8ba2cb4eea81e9569dd35a524dd51b8db6 (diff)
downloadvaadin-framework-f1530bfcff25d44b4bf050c1deb4408f42d05eef.tar.gz
vaadin-framework-f1530bfcff25d44b4bf050c1deb4408f42d05eef.zip
Fixes default theme compilation script to be Windows platform compatible.
svn changeset:6108/svn branch:trunk
Diffstat (limited to 'build/buildhelpers')
-rw-r--r--build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java b/build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java
index 66c4b00bdd..b97c74d25e 100644
--- a/build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java
+++ b/build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java
@@ -65,7 +65,8 @@ public class CompileDefaultTheme {
if (cssFile.isFile()) {
combinedCss.append("\n");
- combinedCss.append("/*" + filename + "*/");
+ combinedCss.append("/* " + filename.replaceAll("\\\\", "/")
+ + " */");
combinedCss.append("\n");
FileInputStream fstream = new FileInputStream(cssFile);