From af215ea33e9e829e070d8cfd4791b2d44031a3e8 Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Wed, 1 Nov 2017 15:55:35 -0700 Subject: [PATCH] Backed out changeset c6c4fb4b0fef (bug 1412460); a=bustage I'm able to produce a build failure with this changeset on one of my machines. I guess the checks weren't as redundant as I thought... CLOSED TREE --HG-- extra : amend_source : 564add1404e09ca023c3347f3ce20be407dffa82 --- client.mk | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/client.mk b/client.mk index 19f4e66a33b5..3b963437ef34 100644 --- a/client.mk +++ b/client.mk @@ -213,7 +213,15 @@ endif MAKEFILE = $(wildcard $(OBJDIR)/Makefile) CONFIG_STATUS = $(wildcard $(OBJDIR)/config.status) -$(CONFIGURES): %: %.in +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) @echo Generating $@ cp -f $< $@ chmod +x $@