Re: cygwin1.dll possible bug

2006-02-21 Thread Gland Vador
Christopher Faylor wrote: I've created a Makefile that looks like this: _module1_DIR=/share/tmp/module1 _module2_DIR=/share/tmp/module2 _module3_DIR=/share/tmp/module3 REQUIRES:=module1 module2 module3 all: @echo $(foreach z,$(strip $(REQUIRES)),\

Re: cygwin1.dll possible bug

2006-02-20 Thread Gland Vador
Eric Blake wrote: I have found a strange behaviour in the last (cygwin-1.5.19-4) cygwin1.dll. where $(REQUIRES) are ie: module1 module2 module3 $(_module*_DIR) is a folder on a nework drive, inside this folder I have a optional subfolder named "inc". Try a snapshot. There are some kno

cygwin1.dll possible bug

2006-02-20 Thread Gland Vador
Hello, I have found a strange behaviour in the last (cygwin-1.5.19-4) cygwin1.dll. I have the folowing code in a makefile: @echo $(foreach z,$(strip $(REQUIRES)),\ $(if $(_$(z)_DIR), $(wildcard $(_$(z)_DIR)/inc),)) where $(REQUIRES) are ie: module1 module2 module3 $(