On Tue, 23 Mar 2010, Bill Janssen wrote:
wjans...@marlowe-vm /x/pylucene/trunk $ mkdir build/test mkdir: cannot create directory `build/test': File exists wjans...@marlowe-vm /x/pylucene/trunk
If the windows path is x:\pylucene\trunk, isn't the corresponding cygwin path something like //cygdrive/x/pylucene/trunk ?
In PyLucene's Makefile, around line 249, BUILD_TEST is set to a unix style path based on $(shell pwd). That thing is then converted to a windows-style path using cygpath. Are these paths valid on your system ?
Andi..