From 90bbf5454c53a3e26b21d899aa5b5ca947b9bbe5 Mon Sep 17 00:00:00 2001 From: "Crist J. Clark" Date: Tue, 5 Mar 2002 19:13:05 +0000 Subject: [PATCH] Environmental variable was not being passed to a subshell as intended. PR: bin/35558 Submitted by: Nicolas Rachinsky --- etc/periodic/weekly/330.catman | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/periodic/weekly/330.catman b/etc/periodic/weekly/330.catman index 6739ae9fec1a..9fed4e5e2c33 100755 --- a/etc/periodic/weekly/330.catman +++ b/etc/periodic/weekly/330.catman @@ -42,8 +42,8 @@ case "$weekly_catman_enable" in then for i in $man_locales do - LC_ALL=$i echo /usr/libexec/catman.local -L \ - "$MANPATH" | su -fm man || rc=3 + echo /usr/libexec/catman.local -L \ + "$MANPATH" | LC_ALL=$i su -fm man || rc=3 done fi fi