|
From: Robert W. B. <rb...@di...> - 2001-08-03 19:57:57
|
Hello Brian,
On Fri, 3 Aug 2001, Brian Parker wrote:
>
> Hi,
>
> I'm trying to build from src. I have installed javacc2.0. And I have
> changed the 'build.xml' to make sure this property is set:
> <property name="javaccHome" value="C:/A_temp/java_cc/javacc2.0/bin/lib"
> />
>
> Here is the output from running ant:
> <snip>
> C:\A_temp\cvs_projects\jython\jython>ant
> Buildfile: build.xml
>
> init:
>
> prepare:
>
> tree:
>
> BUILD FAILED
>
> C:\A_temp\cvs_projects\jython\jython\build.xml:45: Javacchome not set.
> </snip>
>
> I tried setting 'javacchome' as an environment variable also, to no
> avail.
>
> Any help would be greatly appreciated.
>
> Brian
try:
<property name="javaccHome2" value="C:/A_temp/java_cc/javacc2.0/bin/lib"
/>
The reason being that if you look further down the build.xml file you'll
see:
<jjtree
javacchome="${javaccHome2}"
target="org/python/parser/python.jjt"
outputdirectory="org/python/parser/"
/>
Notice the 2.
It's a bit of a glitch in the build.xml.
Cheers,
Robert
|