diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1995-04-04 04:23:37 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1995-04-04 04:23:37 +0000 |
commit | cce2b8a5571b3c63dbcbb1c919778a62bff0a7ee (patch) | |
tree | 0904b6be3c28277b1cc221391ef2d870318da346 | |
parent | bb60355b3df5202692acfae9db7509e98744ae87 (diff) | |
download | FreeBSD-ports-cce2b8a5571b3c63dbcbb1c919778a62bff0a7ee.zip FreeBSD-ports-cce2b8a5571b3c63dbcbb1c919778a62bff0a7ee.tar.gz |
Remove a `.' from the end of the echo line
`>> Attempting to fetch from $${site}' as it is misleading
-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 7c80a8d..bf4fdfa 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.129 1995/04/01 09:35:29 jkh Exp $ +# $Id: bsd.port.mk,v 1.130 1995/04/01 10:01:49 jkh Exp $ # # Please view me with 4 column tabs! @@ -659,7 +659,7 @@ fetch: pre-fetch if [ ! -f $$file -a ! -f `basename $$file` ]; then \ ${ECHO_MSG} ">> $$file doesn't seem to exist on this system."; \ for site in ${MASTER_SITES}; do \ - ${ECHO_MSG} ">> Attempting to fetch from $${site}."; \ + ${ECHO_MSG} ">> Attempting to fetch from $${site}"; \ if ${NCFTP} ${NCFTPFLAGS} $${site}$${file}; then \ break; \ fi \ |