diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-07-19 23:41:51 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-07-19 23:41:51 +0800 |
commit | 33b5bbdb6abb4d27e4d08037d6b017b014b4b49c (patch) | |
tree | c06925dfd1feaa8fed0280a212630fbddcbb9e75 /Tools | |
parent | 4440c94e09b9c0b041cedafdd382bbcb5fa23a1d (diff) | |
download | freebsd-ports-gnome-33b5bbdb6abb4d27e4d08037d6b017b014b4b49c.tar.gz freebsd-ports-gnome-33b5bbdb6abb4d27e4d08037d6b017b014b4b49c.tar.zst freebsd-ports-gnome-33b5bbdb6abb4d27e4d08037d6b017b014b4b49c.zip |
Various fixes and improvements.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/checknewver.sh | 10 |
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 |