Skip to content

Commit

Permalink
MONDRIAN: Fix build. If the classes directory did not exist when ant …
Browse files Browse the repository at this point in the history
…started, it was left off the path when resgen was called.

[git-p4: depot-paths = "//open/mondrian/": change = 11084]
  • Loading branch information
julianhyde committed May 18, 2008
1 parent 07dbe96 commit 650e396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Expand Up @@ -240,7 +240,7 @@ demo/access/MondrianFoodMart.mdb"/>

<path id="project.test.classpath" refid="project.test.classpath-${jdk}"/>

<target name="define-tasks">
<target name="define-tasks" depends="prepare">
<taskdef name="javacup" classname="java_cup.JavaCUPTask">
<classpath refid="project.classpath"/>
</taskdef>
Expand Down Expand Up @@ -376,7 +376,7 @@ demo/access/MondrianFoodMart.mdb"/>
<antcall target="clean"/>
</target>

<target name="prepare" depends="download-ivy,install-ivy,resolve,define-tasks">
<target name="prepare" depends="download-ivy,install-ivy,resolve">
<mkdir dir="${classes.dir}"/>
<mkdir dir="${testclasses.dir}"/>
<mkdir dir="${build.dir}"/>
Expand Down

0 comments on commit 650e396

Please sign in to comment.