diff options
author | Mikael Vappula <mikael@vaadin.com> | 2011-11-25 14:45:15 +0200 |
---|---|---|
committer | Mikael Vappula <mikael@vaadin.com> | 2011-11-25 14:45:15 +0200 |
commit | 424e3a25acddb13c2962456e4d37e46000bf0bad (patch) | |
tree | 29c93556f14b5457ec660073dd3538a7f18ecda9 /build | |
parent | 8ba6c987d1697a651c0046121fd4849651a42efd (diff) | |
download | vaadin-framework-424e3a25acddb13c2962456e4d37e46000bf0bad.tar.gz vaadin-framework-424e3a25acddb13c2962456e4d37e46000bf0bad.zip |
Missing mkdir caused warning while compiling widgetset
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/build.xml b/build/build.xml index f906ae2ec2..0a42cde984 100644 --- a/build/build.xml +++ b/build/build.xml @@ -479,6 +479,7 @@ <target name="compile-widgetset" description="Compiles the widgetset given as the first parameter" depends="ivy-resolve"> <fail unless="widgetset" message="No widgetset parameter set"/> <echo>Compiling widgetset ${widgetset}. Output directory: ${widgetsets-output-dir}</echo> + <mkdir dir="${widgetsets-output-dir}"/> <java classname="com.google.gwt.dev.Compiler" failonerror="yes" fork="yes" maxmemory="512m"> <classpath> <path refid="client-side.compile.classpath" /> |