summaryrefslogtreecommitdiff
path: root/Makefile.in
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:31:38 -0800
commit9556f156a910db93961707bea478a6e3cae86ea0 (patch)
treee17ba7e1841bcc1255fcceabb77ee0ae404c5276 /Makefile.in
parentaade88bfc247091081fbe33834339f69d894ad9b (diff)
downloadrsync-9556f156a910db93961707bea478a6e3cae86ea0.tar.gz
rsync-9556f156a910db93961707bea478a6e3cae86ea0.tar.bz2
rsync-9556f156a910db93961707bea478a6e3cae86ea0.zip
Make it clearer which configure files changed.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 48e159a6..766e09e9 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -134,16 +134,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 \