I took a quick scan through the webgnats listing for make and
didn't see anything related to this post I sent in November. Has
it been determined to not be a bug, or better still, been fixed?
Thanks,
Scott
Scott Murray wrote:
>
> Consider the following Makefile:
>
> # start
> .PHONY: a b c
I looked at it and my first reaction was that it's a bug. However, I
haven't had enough time yet to dig into it; maybe I will over the
Thanksgiving holiday.
--
---
Paul D. Smith <[EMAIL PROTECTED]> Find some G
Anyone have any insight into these issues I posted last week?
Scott Murray wrote:
>
> Consider the following Makefile:
>
> # start
> .PHONY: a b c d all
>
> BLAH := foo
> COMMAND = echo $(BLAH)
>
> all: a b c
>
> a b c:
> @$(COMMAND)
>
> b: BLAH := bar
>
> c: BLAH := bar
> c: COMMA
Consider the following Makefile:
# start
.PHONY: a b c d all
BLAH := foo
COMMAND = echo $(BLAH)
all: a b c
a b c:
@$(COMMAND)
b: BLAH := bar
c: BLAH := bar
c: COMMAND += snafu $(BLAH)
d: c
d: BLAH := baz
# end
With make-3.79.1, running 'make' yields:
foo
bar
foo snafu bar
This se