From: Wayne Davison Date: Sat, 15 Nov 2008 23:31:38 +0000 (-0800) Subject: Make it clearer which configure files changed. X-Git-Tag: v3.0.5~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ff3e90507c887d71744737614d70678d44c7be9;p=thirdparty%2Frsync.git Make it clearer which configure files changed. --- 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 \