On Wed, 23 Sep 2009, Sepand Ansari wrote:
Hi All, I am trying to install pylucene using cygwin on Win XP. After resolving problems I had with building JCC now I have both JCC and Java Lucene built . After Lucene being build the make process executes this scripts which causes error: /cygdrive/c/Python26/python.exe -m jcc --shared --jar lucene-java-2.4.1/build/lucene-core-2.4.1.jar --jar [...] --python lucene --mapping org.apache.lucene.document.Document 'get:(Ljava/lang/String;)Ljava/lang/String;' --mapping java.util.Properties 'getProperty:(Ljava/lang/String;)Ljava/lang/String;' --sequence org.apache.lucene.search.Hits 'length:()I' 'doc:(I)Lorg/apache/lucene/document/Document;' --version 2.4.1 --module python/collections.py --files 2 --build process_begin: CreateProcess((null), /cygdrive/c/Python26/python.exe -m jcc [...] --build, ...) failed. make (e=3D3): The system cannot find the path specified. c:\mingw\bin\mingw32-make.exe: *** [compile] Error 3
It looks like you're using MinGW make inside Cygwin, right ? Does it support Cygwin style paths ? If not, use Cygwin's 'make' instead. Andi..