[bug #20033] parallel (-j2) make with $(eval) construct segfaults

2007-06-01 Thread anonymous
URL: http://savannah.gnu.org/bugs/?20033 Summary: parallel (-j2) make with $(eval) construct segfaults Project: make Submitted by: None Submitted on: Friday 06/01/2007 at 10:48 UTC Severity: 3 - Normal Item

[bug #20033] parallel (-j2) make with $(eval) construct segfaults

2007-06-01 Thread anonymous
Follow-up Comment #1, bug #20033 (project make): Hi, its me again. Find below a trivial makefile to recreate this. run 'make setup make -j2' to get a segfault. Cheers, Rasmus A := $(wildcard *.a) .PHONY: all all: $(A:.a=.b) .PHONY: clean clean: rm -f $(A) .PHONY: setup setup:

[bug #20033] parallel (-j2) make with $(eval) construct segfaults

2007-06-01 Thread Martin Dorey
Follow-up Comment #2, bug #20033 (project make): (I can reproduce a crash with that example.) ___ Reply to this item at: http://savannah.gnu.org/bugs/?20033 ___ Message sent via/by

mention how to quote a comma in call

2007-06-01 Thread jidanni
Your reverse = $(2) $(1) example in the manual is great, however if one day your users happen to want to quote a comma, OK:;echo $(call reverse,a,b) SORRY1:;echo $(call reverse,a\,b,c) SORRY2:;echo $(call reverse,a,b,c) then they are S.O.L. unless you mention how. One apparently needs to do

Re: mention how to quote a comma in call

2007-06-01 Thread Sam Ravnborg
On Sat, Jun 02, 2007 at 05:25:50AM +0800, [EMAIL PROTECTED] wrote: Your reverse = $(2) $(1) example in the manual is great, however if one day your users happen to want to quote a comma, OK:;echo $(call reverse,a,b) SORRY1:;echo $(call reverse,a\,b,c) SORRY2:;echo $(call reverse,a,b,c)