зеркало из https://github.com/mozilla/gecko-dev.git
Bugzilla Bug 325148: worked around the change of backslash-newline behavior
inside single-quoted strings in GNU make 3.81. The patch is contributed by Pawel Chmielowski <prefiks@aviary.pl>. r=benjamin.smedberg,wtc.
This commit is contained in:
Родитель
6852b354f2
Коммит
b5aacc0a96
|
@ -873,8 +873,7 @@ endif
|
|||
|
||||
ifneq (,$(filter-out OpenVMS OS2 WIN%,$(OS_TARGET)))
|
||||
# Can't use sed because of its 4000-char line length limit, so resort to perl
|
||||
.DEFAULT:
|
||||
@perl -e ' \
|
||||
PERL_DEPENDENCIES_PROGRAM = \
|
||||
open(MD, "< $(DEPENDENCIES)"); \
|
||||
while (<MD>) { \
|
||||
if (m@ \.*/*$< @) { \
|
||||
|
@ -901,7 +900,10 @@ ifneq (,$(filter-out OpenVMS OS2 WIN%,$(OS_TARGET)))
|
|||
} elsif ("$<" ne "$(DEPENDENCIES)") { \
|
||||
print "$(MAKE): *** No rule to make target $<. Stop.\n"; \
|
||||
exit(1); \
|
||||
}'
|
||||
}
|
||||
|
||||
.DEFAULT:
|
||||
@perl -e '$(PERL_DEPENDENCIES_PROGRAM)'
|
||||
endif
|
||||
|
||||
#############################################################################
|
||||
|
|
Загрузка…
Ссылка в новой задаче