diff options
Diffstat (limited to 'Master/tlpkg/bin/tl-update-man')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-man | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Master/tlpkg/bin/tl-update-man b/Master/tlpkg/bin/tl-update-man index 385690ed152..a0074c1a072 100755 --- a/Master/tlpkg/bin/tl-update-man +++ b/Master/tlpkg/bin/tl-update-man @@ -44,14 +44,17 @@ for sect in 1 5; do bindir=$Master/bin/i386-linux for m in *; do f=`basename $m .1` - test -r "$bindir/$f" || echo "$0: $f in man but not bin" + if test ! -r "$bindir/$f"; then + printf "$0: $f in man but not bin" + (test "$f" = cweb || test "$f" = psutils) && printf " (expected)" + echo done - fi - # for man1, generate make fragment for checking against man1/Makefile. - (cd $rundir/.. && make so.rules >$TMPDIR/so.rules) - echo "$0: check $TMPDIR/so.rules against `pwd`" + # for man1, generate make fragment for checking against man1/Makefile. + (cd $rundir/.. && make so.rules >$TMPDIR/so.rules) + echo "$0: check $TMPDIR/so.rules against `pwd`" + fi # see what we've done: - (cd $rundir && svn status) + (cd $rundir && pwd && svn status) done |