Bugs item #858077, was opened at 2003-12-10 23:03
Message generated for change (Comment added) made by cutting
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=491356&aid=858077&group_id=59548
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Paolo Spadafora (korfut)
Assigned to: Doug Cutting (cutting)
Summary: Build
Initial Comment:
The file build.xml has a reference to a unix specific
command, line 268:
<apply executable="chmod">
<arg value="+x"/>
<fileset dir="${dist.dir}/bin"/>
</apply>
Process will always fail.
it can be solved by replacing the above code with:
<condition property="this.is.aix">
<os family="unix"/>
</condition>
<antcall target="chmod">
</antcall>
and making a new target:
<target name="chmod" if="this.is.aix">
<apply executable="chmod">
<arg value="+x"/>
<fileset dir="${dist.dir}/bin"/>
</apply>
</target>
not sure if we need to grant execute on windows, on my
machine runs fine.
----------------------------------------------------------------------
>Comment By: Doug Cutting (cutting)
Date: 2004-02-05 10:32
Message:
Logged In: YES
user_id=21778
Do you have Cygwin installed, as suggested in the tutorial?
For Win32 Nutch development you must install Cygwin. This
is also required to make the bin/nutch script work correctly
on Win32. This requirement is documented in the tutorial.
I suspect that is the problem.
----------------------------------------------------------------------
Comment By: Paolo Spadafora (korfut)
Date: 2004-02-05 08:54
Message:
Logged In: YES
user_id=713420
Doug,
can you please fix the build.xml file, otherwise everytime i get
a snapshot from the CVS i have to edit this file,
thank you.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=491356&aid=858077&group_id=59548
-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
Nutch-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nutch-developers