Re: [Automake-NG] [FYI 2/2] built sources: avoid fork bomb in $(BUILT_SOURCES) handling

2012-09-20 Thread Akim Demaille
Le 19 sept. 2012 à 21:49, Stefano Lattarini a écrit : Well, if the user calls make all in the recipe for a $(BUILT_SOURCES), he will still experience a fork bomb, even after this patch -- but that is the case also for mainline Automake, so no regression here. On the other hand, before this

Re: [Automake-NG] [FYI 2/2] built sources: avoid fork bomb in $(BUILT_SOURCES) handling

2012-09-19 Thread Akim Demaille
Le 16 sept. 2012 à 20:21, Stefano Lattarini a écrit : Hi Akim. On 09/16/2012 03:48 PM, Akim Demaille wrote: Le 11 sept. 2012 à 16:49, Stefano Lattarini a écrit : Due to how the handling of $(BUILT_SOURCES) was implemented in Automake-NG, a recursive make call in the recipe of any

Re: [Automake-NG] [FYI 2/2] built sources: avoid fork bomb in $(BUILT_SOURCES) handling

2012-09-19 Thread Stefano Lattarini
On 09/19/2012 03:19 PM, Akim Demaille wrote: Le 16 sept. 2012 à 20:21, Stefano Lattarini a écrit : Hi Akim. On 09/16/2012 03:48 PM, Akim Demaille wrote: Le 11 sept. 2012 à 16:49, Stefano Lattarini a écrit : Due to how the handling of $(BUILT_SOURCES) was implemented in Automake-NG, a

Re: [Automake-NG] [FYI 2/2] built sources: avoid fork bomb in $(BUILT_SOURCES) handling

2012-09-16 Thread Stefano Lattarini
Hi Akim. On 09/16/2012 03:48 PM, Akim Demaille wrote: Le 11 sept. 2012 à 16:49, Stefano Lattarini a écrit : Due to how the handling of $(BUILT_SOURCES) was implemented in Automake-NG, a recursive make call in the recipe of any $(BUILT_SOURCES) (or of any of its prerequisites) would have

[Automake-NG] [FYI 2/2] built sources: avoid fork bomb in $(BUILT_SOURCES) handling

2012-09-11 Thread Stefano Lattarini
Due to how the handling of $(BUILT_SOURCES) was implemented in Automake-NG, a recursive make call in the recipe of any $(BUILT_SOURCES) (or of any of its prerequisites) would have caused an infinite recursion (complete with fork bomb, yuck). Work around the issue. See: