[bug #19226] False warning about a circular dependency

2009-06-14 Thread Paul D. Smith
Update of bug #19226 (project make): Status:None = Duplicate Open/Closed:Open = Closed ___ Follow-up Comment #1: This is a duplicate of

[bug #19226] False warning about a circular dependency

2007-03-07 Thread anonymous
URL: http://savannah.gnu.org/bugs/?19226 Summary: False warning about a circular dependency Project: make Submitted by: None Submitted on: Mittwoch 07.03.2007 um 09:28 UTC Severity: 3 - Normal Item Group

Re: False warning about a circular dependency

2007-03-06 Thread Paul Smith
On Mon, 2007-03-05 at 18:41 +0100, Johannes Hölzl wrote: VPATH := ../dir/ all: a .SECONDARY: a: b b @echo compile ../dir/b: $ mkdir ../dir $ touch ../dir/b $ make -f test.make make: Circular a - b dependency dropped. compile Of course a depends on b, but why depends b on a?

False warning about a circular dependency

2007-03-05 Thread Johannes Hölzl
Hi, We are using make 3.81 under CygWin (Windows XP SP2). I have the following makefile: test.make: --8- VPATH := ../dir/ all: a .SECONDARY: a: b b @echo compile ../dir/b: --8- I am getting the following: $ mkdir