summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-02-25 16:27:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-02-25 16:27:13 (GMT)
commitbb07a3f46b7033369695d41835d023c1cfe42747 (patch)
tree10f61e2fd8610b60652575c709794f3164f2c975 /Makefile
parentef94636a4def20453a6552c278a27820f2ccf79b (diff)
parent7f1b69763272f9d07e612309f53190da0c97ca70 (diff)
downloadgit-bb07a3f46b7033369695d41835d023c1cfe42747.zip
git-bb07a3f46b7033369695d41835d023c1cfe42747.tar.gz
git-bb07a3f46b7033369695d41835d023c1cfe42747.tar.bz2
Merge branch 'jn/less-reconfigure'
A change made on v1.8.1.x maintenance track had a nasty regression to break the build when autoconf is used. * jn/less-reconfigure: Makefile: avoid infinite loop on configure.ac change
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 8 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index ba8e243..7c75e3b 100644
--- a/Makefile
+++ b/Makefile
@@ -1821,12 +1821,14 @@ $(patsubst %.py,%,$(SCRIPT_PYTHON)): % : unimplemented.sh
mv $@+ $@
endif # NO_PYTHON
+CONFIGURE_RECIPE = $(RM) configure configure.ac+ && \
+ sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
+ configure.ac >configure.ac+ && \
+ autoconf -o configure configure.ac+ && \
+ $(RM) configure.ac+
+
configure: configure.ac GIT-VERSION-FILE
- $(QUIET_GEN)$(RM) $@ $<+ && \
- sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
- $< > $<+ && \
- autoconf -o $@ $<+ && \
- $(RM) $<+
+ $(QUIET_GEN)$(CONFIGURE_RECIPE)
ifdef AUTOCONFIGURED
# We avoid depending on 'configure' here, because it gets rebuilt
@@ -1835,7 +1837,7 @@ ifdef AUTOCONFIGURED
# do want to recheck when the platform/environment detection logic
# changes, hence this depends on configure.ac.
config.status: configure.ac
- $(QUIET_GEN)$(MAKE) configure && \
+ $(QUIET_GEN)$(CONFIGURE_RECIPE) && \
if test -f config.status; then \
./config.status --recheck; \
else \