[bug #27047] Difficulties defining prerequisites for pattern targets.

2009-08-01 Thread Paul D. Smith
Follow-up Comment #4, bug #27047 (project make): The failure you are reporting is actually documented behavior; the documentation for target-specific variables says: As with automatic variables, these values are only available within the context of a target's command script (and in other target-

[bug #27047] Difficulties defining prerequisites for pattern targets.

2009-07-18 Thread Boris Kolpackov
Follow-up Comment #3, bug #27047 (project make): You can get the desired behavior using the second expansion feature (note $$): .SECONDEXPANSION: all:test1001.out foo: @echo making foo test1%.out: TEST=foo test%.out: $${TEST} @echo making test$*.out with TEST=${T

[bug #27047] Difficulties defining prerequisites for pattern targets.

2009-07-18 Thread Robert L Walton
Follow-up Comment #2, bug #27047 (project make): Fails in the sense that applying `make' to ++ all:test1001.out foo: @echo making foo test1%.out: TEST=foo test%.out: ${TEST} @echo making test$*.out with TEST=${TEST} -- produces + making test1001.out with TEST=f

[bug #27047] Difficulties defining prerequisites for pattern targets.

2009-07-17 Thread Paul D. Smith
Update of bug #27047 (project make): Status:None => Not A Bug Open/Closed:Open => Closed ___ Follow-up Comment #1: Pattern rules with no

[bug #27047] Difficulties defining prerequisites for pattern targets.

2009-07-17 Thread Robert L Walton
URL: Summary: Difficulties defining prerequisites for pattern targets. Project: make Submitted by: walton Submitted on: Fri 17 Jul 2009 10:18:57 AM GMT Severity: 3 - Normal