diff options
author | Wayne Davison <wayned@samba.org> | 2008-11-15 15:31:38 -0800 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2008-11-15 15:31:38 -0800 |
commit | 9556f156a910db93961707bea478a6e3cae86ea0 (patch) | |
tree | e17ba7e1841bcc1255fcceabb77ee0ae404c5276 /Makefile.in | |
parent | aade88bfc247091081fbe33834339f69d894ad9b (diff) | |
download | rsync-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.in | 8 |
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 \ |