Update of bug #19226 (project make):
Status:None => Duplicate
Open/Closed:Open => Closed
___
Follow-up Comment #1:
This is a duplicate o
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
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 depe
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:
$