Fix PERLLIB on Shorewall6

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2011-05-11 15:24:50 -08:00
parent 0614f61347
commit 7994c82c1b

View File

@ -303,7 +303,9 @@ compiler() {
if [ $g_perllib = /usr/share/shorewall ]; then
$command $PERL $debugflags $pc $options $@
else
$command PERL5LIB=$g_perllib $PERL $debugflags $pc $options $@
PERL5LIB=$g_perllib
export PERL5LIB
$command $PERL $debugflags $pc $options $@
fi
}