Re: gmake-3.80 bug?
This is a know problem. See bug # 1516 on Savannah. There's a patch there too. -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandl
gmake-3.80 bug?
I'm not sure if this has been reported by anyone, but the following makefile: define _append ifeq ($(filter $(1),$(AOEU)),) AOEU += $(1) endif endef append = $(eval $(call _append,$(1))) ifndef aoeu aoeu := 1 $(call append,aoeu) endif .PHONY: aoeu aoeu: @echo $(AOEU) produces