summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-07-19 15:41:51 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-07-19 15:41:51 +0000
commit2e9b099ca00cebf1be729d8ffe30ebc112162196 (patch)
treef4f45228747da794a3daa522c446f076438f4ad1 /Tools
parentChange my address in MAINTAINER. (diff)
Various fixes and improvements.
Notes
Notes: svn path=/head/; revision=30889
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/checknewver.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/Tools/scripts/checknewver.sh b/Tools/scripts/checknewver.sh
index 60202086201a..ba89c759dcaa 100755
--- a/Tools/scripts/checknewver.sh
+++ b/Tools/scripts/checknewver.sh
@@ -53,14 +53,14 @@ if [ ! -e Makefile ]; then
display_err "Couldn't find Makefile here."
fi
-PORTNAME=`make -V PORTNAME`
-PORTVERSION=`make -V PORTVERSION`
-DISTFILES=`make -V DISTFILES`
+PORTNAME=`make -V PORTNAME 2>/dev/null`
+PORTVERSION=`make -V PORTVERSION 2>/dev/null`
+DISTFILES=`make -V DISTFILES 2>/dev/null`
if [ x"${PORTNAME}" = x"" -o x"${PORTVERSION}" = x"" -o x"${DISTFILES}" = x"" ]; then
display_err "Either PORTNAME, PORTVERSION or DISTFILES is undefined in Makefile."
fi
-MASTER_SITES=`env MASTER_SITE_BACKUP=\"\" make -V MASTER_SITES | xargs -n1 echo | grep ^ftp://`
+MASTER_SITES=`env MASTER_SITE_BACKUP=\"\" make -V MASTER_SITES 2>/dev/null | xargs -n1 echo | grep ^ftp://`
if [ x"${MASTER_SITES}" = x"" ]; then
display_err "Either MASTER_SITES is undefined in Makefile or it doesn't contain any ftp sites."
fi
@@ -92,7 +92,7 @@ for MASTER_SITE in ${MASTER_SITES}; do
for DISTNAME in ${DISTFILES}; do
DF_PATR=`echo ${DISTNAME} | sed "s=${PV_PATR}=.*=" | \
sed 's=\.=\\\\.=g ; s=\\\.\*=.*='`
- for i in `echo ${FTPLIST} | xargs -n1 echo | grep "${DF_PATR}"` ; do
+ for i in `echo ${FTPLIST} | xargs -n1 echo | grep "${DF_PATR}$"` ; do
if [ "${i}" ">" "${DISTNAME}" ]; then
NEW="${NEW} ${MASTER_SITE}${i}"
fi