diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-06-05 18:49:29 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-06-05 18:49:29 +0000 |
commit | d4ec096fc7dd3cfbfa9ab9dad4f16faa2586efa4 (patch) | |
tree | 32c23cc4f1b0ae59126c52fe69673e2298f5ac54 /mk | |
parent | 47324d693a27ae38b744dc1d870336ba31696d49 (diff) | |
download | pkgsrc-d4ec096fc7dd3cfbfa9ab9dad4f16faa2586efa4.tar.gz |
ignore errors from 'cd' in binpkg-list (lotsa useless warnings from the
daily cron job after the rototiling)
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index f30e2ce39db..37f4c7dfe33 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.477 2000/06/05 07:25:13 tron Exp $ +# $NetBSD: bsd.pkg.mk,v 1.478 2000/06/05 18:49:29 hubertf Exp $ # # This file is in the public domain. # @@ -2456,7 +2456,7 @@ binpkg-list: *) \ cd ${PACKAGES}/../..; \ for i in [1-9].*/*; do \ - if cd ${PACKAGES}/../../$$i/${PKGREPOSITORYSUBDIR}; then \ + if cd ${PACKAGES}/../../$$i/${PKGREPOSITORYSUBDIR} 2>/dev/null; then \ for j in ${PKGWILDCARD}${PKG_SUFX}; \ do \ if [ -f "$$j" ]; then \ |