Closed
Bug 746289
Opened 14 years ago
Closed 13 years ago
Makefiles: GMSL - gnu make standard library
Categories
(Firefox Build System :: General, defect)
Firefox Build System
General
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: joey, Unassigned)
Details
Consider installing/using the GNU Make Standard Library:
http://sourceforge.net/projects/gmsl
Being able to replace:
val = $(shell echo $(var) | tr '[A-Z]' '[a-z]')
with builtin library string functions:
val = $(call tr,$('[A-Z]'),$('[a-z]'),$(var))
Savings on shell overhead from tr calls alone would be worth the overhead of including another library.
| Reporter | ||
Comment 1•13 years ago
|
||
Moving away from make usage so no need to install a std set of library functions.
| Reporter | ||
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → WONTFIX
Updated•8 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•