From 14e5a6d11ed74baa339720aa5d5e70a5dea5d774 Mon Sep 17 00:00:00 2001 From: dan Date: Wed, 12 Apr 2000 21:55:35 -0700 Subject: [PATCH] [svn] Try more aggressively to prevent line-wrapping (e.g. on an 80 column display) on that "wgetrc exists" message. --- doc/Makefile.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/Makefile.in b/doc/Makefile.in index a392f915..55b3ba4b 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -106,12 +106,14 @@ install.wgetrc: echo ' $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC).new'; \ $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC).new; \ echo; \ - echo "WARNING: Differing \`$(WGETRC)' already exists and"; \ - echo " has been spared. You might want to consider"; \ - echo " merging in the new lines from \`$(WGETRC).new'."; \ + echo "WARNING: Differing \`$(WGETRC)'"; \ + echo " exists and has been spared. You might want to"; \ + echo " consider merging in the new lines from"; \ + echo " \`$(WGETRC).new'."; \ echo; \ echo "\c"; \ read user_input; \ + echo; \ fi; \ else \ $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC); \