From f603efeac3919917eddffe19e9fb982957147395 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Fri, 22 Mar 2002 09:59:16 +0000 Subject: Revision 1.45 of gnu/usr.bin/man/man.c obviated the need to link manpages in machine-specific subdirectories (like man4/i386/) to "../". This change didn't propagate here resulting in a loss of whatis(1) database entries. Fix this. Reviewed by: tobez MFC after: 1 week --- gnu/usr.bin/man/makewhatis/makewhatis.perl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gnu/usr.bin/man/makewhatis/makewhatis.perl') diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.perl b/gnu/usr.bin/man/makewhatis/makewhatis.perl index 2bb0e138a887..33cee6570c17 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.perl +++ b/gnu/usr.bin/man/makewhatis/makewhatis.perl @@ -180,6 +180,7 @@ sub parse_dir { if ($subdir =~ /^man\w+$/) { $subdir = "$dir/$subdir"; &parse_subdir($subdir); + &parse_subdir($subdir) if -d ($subdir .= "/${machine}"); } } closedir DIR @@ -439,6 +440,7 @@ sub variables { $whatis_name = "whatis"; # Default name for DB $append = 0; # Don't delete old entries $locale = 0; # Build DB only for localized man directories + chomp($machine = $ENV{'MACHINE'} || `uname -m`); # choose localized man directories suffix. $local_suffix = $ENV{'LC_ALL'} || $ENV{'LC_CTYPE'} || $ENV{'LANG'}; -- cgit v1.2.3