about summary refs log tree commit diff
path: root/Util/helpfiles
diff options
context:
space:
mode:
Diffstat (limited to 'Util/helpfiles')
-rwxr-xr-xUtil/helpfiles6
1 files changed, 4 insertions, 2 deletions
diff --git a/Util/helpfiles b/Util/helpfiles
index 221f673f6..26cfb6f5e 100755
--- a/Util/helpfiles
+++ b/Util/helpfiles
@@ -61,8 +61,10 @@ unless(-d $destdir) {
     mkdir($destdir) || &Die("$destdir is not a directory and cannot be created");
 }
 
-delete($ENV{'MANPL'});
-delete($ENV{'MANROFFSEQ'});
+foreach (keys %ENV) {
+	delete($ENV{$_}) if(/^((LC_)|(LESS)|(MAN))/);
+}
+$ENV{'LANG'} = 'C';
 $ENV{'MANWIDTH'} = '80';
 $ENV{'GROFF_NO_SGR'} = ''; # We need "classical" formatting of man pages.