diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-14 20:58:12 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-14 20:58:12 +0000 |
commit | f11e7836ba673a11e4e26d8c3f7872bc4ea5e0e4 (patch) | |
tree | ab3b6aaa4f9da274ef7da5a5eec4ea773ecf1b08 /mk | |
parent | 2eebfe72bb0afa5b7a04adfcfacbfed7b002f32e (diff) | |
download | pkgsrc-f11e7836ba673a11e4e26d8c3f7872bc4ea5e0e4.tar.gz |
Removed the code for printing progress information again, as printindex
is mostly used in batch mode. Impatient users should count the number of
lines in the output file if they can't wait.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bulk/printdepends | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/mk/bulk/printdepends b/mk/bulk/printdepends index ec48a807be8..6aeeb9b9402 100644 --- a/mk/bulk/printdepends +++ b/mk/bulk/printdepends @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: printdepends,v 1.18 2005/11/05 10:14:43 rillig Exp $ +# $NetBSD: printdepends,v 1.19 2005/11/14 20:58:12 rillig Exp $ # # Copyright (c) 1999, 2000 Hubert Feyrer <hubertf@NetBSD.org> @@ -78,15 +78,6 @@ fi # cache the package list for printindex echo list='"'${list}'"' > .pkglist -pkgbar="" -for i in $list; do - pkgbar="${pkgbar} a" -done -npackages=`echo "$pkgbar" | wc -w` -npackages=`echo $npackages` - -cpackages=0 -cpackages_mod_50="" for pkgdir in $list do if [ ! -d $pkgdir ]; then @@ -115,11 +106,4 @@ do fi fi fi - cpackages_mod_50="${cpackages_mod_50}+"; - case $cpackages_mod_50 in - ++++++++++++++++++++++++++++++++++++++++++++++++++) - cpackages_mod_50="" - cpackages=`expr $cpackages + 50` - echo "${cpackages} of ${npackages} packages finished." 1>&2;; - esac done |