1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Makefile (install.wgetrc): I completely missed the message that the new wgetrc

wasn't being installed the first couple of times I ran `make install' after
changing sample.wgetrc.  Added blank lines around the message and a "<Hit RETURN
to acknowledge>", and reworded the message to be a bit more clear.
This commit is contained in:
dan 2000-04-12 21:37:51 -07:00
parent 6098c2ae46
commit 367f3b15d7
2 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,11 @@
2000-04-12 Dan Harkless <dan-wget@dilvish.speed.net>
* Makefile (install.wgetrc): I completely missed the message that
the new wgetrc wasn't being installed the first couple of times I
ran `make install' after changing sample.wgetrc. Added blank
lines around the message and a "<Hit RETURN to acknowledge>", and
reworded the message to be a bit more clear.
* sample.wgetrc: Added entries for backup_converted and waitretry.
* wget.texi (waitretry): Herold Heiko <Heiko.Herold@previnet.it>'s

View File

@ -105,9 +105,13 @@ install.wgetrc:
else \
echo ' $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC).new'; \
$(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC).new; \
echo "WARNING: File \`$(WGETRC)' already exists and is spared."; \
echo " You might want to consider \`$(WGETRC).new',"; \
echo " and merge both into \`$(WGETRC)', for the best."; \
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; \
echo "<Hit RETURN to acknowledge>\c"; \
read user_input; \
fi; \
else \
$(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC); \