Closed
Bug 912971
Opened 11 years ago
Closed 11 years ago
pymake doesn't normalize targets from command line
Categories
(Firefox Build System :: General, defect)
Firefox Build System
General
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla26
People
(Reporter: glandium, Assigned: glandium)
References
Details
Attachments
(1 file)
1.50 KB,
patch
|
ted
:
review+
|
Details | Diff | Splinter Review |
$ cat /tmp/bar.mk
./foo:
echo foo
bar: ./foo
$ pymake -s --no-print-directory -f /tmp/bar.mk bar
foo
$ make -s --no-print-directory -f /tmp/bar.mk bar
foo
$ pymake -s --no-print-directory -f /tmp/bar.mk foo
foo
$ make -s --no-print-directory -f /tmp/bar.mk foo
foo
$ pymake -s --no-print-directory -f /tmp/bar.mk ./foo
No rule to make target './foo' needed by ['<command-line>', './foo']
$ make -s --no-print-directory -f /tmp/bar.mk ./foo
foo
Assignee | ||
Comment 1•11 years ago
|
||
Attachment #800150 -
Flags: review?(ted)
Updated•11 years ago
|
Attachment #800150 -
Flags: review?(ted) → review+
Assignee | ||
Comment 2•11 years ago
|
||
Comment 3•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla26
Updated•7 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•