diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-03-21 22:43:36 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-03-21 22:43:36 +0000 |
commit | ca5c9c29a9bf2adc2ba727fbc56e3b6eae832df7 (patch) | |
tree | f4ccc921dbee8a50c8e286f22274851f11836ebf /Mk | |
parent | checksum added (diff) |
Make the fetch message a little more interesting and informative.
Notes
Notes:
svn path=/head/; revision=1178
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 57c4ff39b185..bdc706137943 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.120 1995/03/21 01:51:12 jkh Exp $ +# $Id: bsd.port.mk,v 1.121 1995/03/21 03:59:11 jkh Exp $ # # Please view me with 4 column tabs! @@ -576,8 +576,8 @@ fetch: pre-fetch for file in ${DISTFILES}; do \ if [ ! -f $$file -a ! -f `basename $$file` ]; then \ ${ECHO_MSG} ">> $$file doesn't seem to exist on this system."; \ - ${ECHO_MSG} ">> Attempting to fetch it from a master site."; \ for site in ${MASTER_SITES}; do \ + ${ECHO_MSG} ">> Attempting to fetch from $${site}."; \ if ${NCFTP} ${NCFTPFLAGS} $${site}$${file}; then \ break; \ fi \ |