Closed
Bug 436343
Opened 17 years ago
Closed 17 years ago
mozilla-central: js/src/Makefile.ref calculates .d filenames incorrectly
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jorendorff, Unassigned)
Details
Attachments
(1 file)
|
592 bytes,
patch
|
crowderbt
:
review+
|
Details | Diff | Splinter Review |
Obviously I'd rather see bug 97954 land :) but this is a quick dumb fix that might help some js hackers in the meantime...
--- a/js/src/Makefile.ref
+++ b/js/src/Makefile.ref
# Automatic make dependencies files
-DEPENDENCIES = $(CFILES:%.c=$(OBJDIR)/%.d)
+DEPENDENCIES = $(CPPFILES:%.cpp=$(OBJDIR)/%.d)
| Reporter | ||
Comment 1•17 years ago
|
||
Attachment #322970 -
Flags: review?(mrbkap)
| Reporter | ||
Updated•17 years ago
|
Status: NEW → ASSIGNED
Comment 2•17 years ago
|
||
Comment on attachment 322970 [details] [diff] [review]
fix (same as comment 0, more context)
Intercepting review for mrbkap, since I think he is traveling.
Attachment #322970 -
Flags: review?(mrbkap) → review+
| Reporter | ||
Comment 3•17 years ago
|
||
Pushed changeset b48cd29edac8 to mozilla-central (with a=bsmedberg).
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Updated•17 years ago
|
Flags: in-testsuite-
Flags: in-litmus-
You need to log in
before you can comment on or make changes to this bug.
Description
•