The generated CSS-Parser files are placed into org/openlaszlo/css, shouldn't they get into org/openlaszlo/css/parser?
From the ant target:
---
<target name="css-parser" depends="init"
        unless="css-parser.uptodate"
        description="Run JavaCC to create the css-parser *.java files.">
<mkdir dir="${buildsrc.1.4}/${pkg.css.parser}"/>
<javacc target="${src}/${pkg.css}/CSSParser.jj"
                outputdirectory="${buildsrc.1.4}/${pkg.css}/"
                javacchome="${JAVACC_HOME}" />
</target>
---

The ant target creates the org/openlaszlo/css/parser directory, but all generated class files are placed into org/openlaszlo/css. This seems to be wrong somehow. Making this a bit more consistent would be nice...

Reply via email to