summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2008-11-15 15:31:38 -0800
committerWayne Davison <wayned@samba.org>2008-11-15 15:32:02 -0800
commit1ff3e90507c887d71744737614d70678d44c7be9 (patch)
tree1fe8205fc2794809b74dc2f4436b5fe8cb340a4a
parentb292021e455092ad776bdf940f67d692b5a9c535 (diff)
downloadrsync-1ff3e90507c887d71744737614d70678d44c7be9.tar.gz
Make it clearer which configure files changed.
-rw-r--r--Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index c365b92b..84802c5f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -133,16 +133,20 @@ configure.sh config.h.in: configure.in aclocal.m4
@if diff configure.sh configure.sh.old >/dev/null 2>&1; then \
echo "configure.sh is unchanged."; \
rm configure.sh.old; \
+ else \
+ echo "configure.sh has CHANGED."; \
fi
@if diff config.h.in config.h.in.old >/dev/null 2>&1; then \
echo "config.h.in is unchanged."; \
rm config.h.in.old; \
+ else \
+ echo "config.h.in has CHANGED."; \
fi
@if test -f configure.sh.old -o -f config.h.in.old; then \
if test "$(MAKECMDGOALS)" = reconfigure; then \
- echo 'Configure files changed -- continuing with "make reconfigure".'; \
+ echo 'Continuing with "make reconfigure".'; \
else \
- echo 'Configure files changed -- perhaps run:'; \
+ echo 'You may need to run:'; \
echo ' make reconfigure'; \
exit 1; \
fi \