diff options
author | Bart Schaefer <schaefer@zsh.org> | 2025-02-12 20:06:43 -0800 |
---|---|---|
committer | Bart Schaefer <schaefer@zsh.org> | 2025-02-12 20:06:43 -0800 |
commit | 6b25a593d9dab13fd0314467ff93ba88546b3470 (patch) | |
tree | 6942958882e3b2b476e662df78de5ee4ad0303e9 /Util | |
parent | 7a54b36fa88aa35f44c42715503f716a1612e3b7 (diff) | |
download | zsh-6b25a593d9dab13fd0314467ff93ba88546b3470.tar.gz zsh-6b25a593d9dab13fd0314467ff93ba88546b3470.zip |
53346 (cf. 53350): Util/helpfiles: fix use of "man" on file paths
Diffstat (limited to 'Util')
-rwxr-xr-x | Util/helpfiles | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Util/helpfiles b/Util/helpfiles index 9e837fe2d..58aa04bba 100755 --- a/Util/helpfiles +++ b/Util/helpfiles @@ -54,7 +54,7 @@ $ENV{'GROFF_NO_SGR'} = ''; # We need "classical" formatting of man pages. $mantmp = $destdir . '/man.tmp'; $coltmpbase = 'col.tmp'; $coltmp = $destdir . '/' . $coltmpbase; -$args = "$manfile >$mantmp"; +$args = "./$manfile >$mantmp"; unlink($mantmp); &Info('attempting man ', $args); if(system('man ' . $args) || !(-s $mantmp)) { |