Bug 1412460 - Remove redundant configure dependency checking in client.mk; r=mshal

moz.configure invokes autoconf to generate old-configure. As part of this
it checks mtimes of dependencies. The logic in client.mk is old and
redundant. So remove it.

MozReview-Commit-ID: FG2lWiIjKqV

--HG--
extra : rebase_source : 779a7ffb076ce15a76fe2e675695943d43c5c454
This commit is contained in:
Gregory Szorc 2017-10-27 13:51:05 -07:00
parent 2dd5f0445f
commit 088e51c413

View File

@ -221,15 +221,7 @@ MAKEFILE = $(wildcard $(OBJDIR)/Makefile)
CONFIG_STATUS = $(wildcard $(OBJDIR)/config.status)
CONFIG_CACHE = $(wildcard $(OBJDIR)/config.cache)
EXTRA_CONFIG_DEPS := \
$(TOPSRCDIR)/aclocal.m4 \
$(TOPSRCDIR)/old-configure.in \
$(wildcard $(TOPSRCDIR)/build/autoconf/*.m4) \
$(TOPSRCDIR)/js/src/aclocal.m4 \
$(TOPSRCDIR)/js/src/old-configure.in \
$(NULL)
$(CONFIGURES): %: %.in $(EXTRA_CONFIG_DEPS)
$(CONFIGURES): %: %.in
@echo Generating $@
cp -f $< $@
chmod +x $@