From 6b25a593d9dab13fd0314467ff93ba88546b3470 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Wed, 12 Feb 2025 20:06:43 -0800 Subject: 53346 (cf. 53350): Util/helpfiles: fix use of "man" on file paths --- ChangeLog | 2 ++ Util/helpfiles | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 929abce32..2c11f7081 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2025-02-12 Bart Schaefer + * 53346 (cf. 53350): Util/helpfiles: fix use of "man" on file paths + * 53348: Doc/Zsh/builtins.yo, Src/builtin.c, Test/K01nameref.ztst: Revise handling of incompatible typeset options when used with -n 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)) { -- cgit v1.2.3