Fix PERLLIB

This commit is contained in:
Tom Eastep 2011-05-11 12:58:57 -07:00
parent 63d5171ae9
commit 0614f61347

View File

@ -366,7 +366,9 @@ compiler() {
if [ $g_perllib = share/shorewall ]; then if [ $g_perllib = share/shorewall ]; then
$PERL $debugflags $g_libexec/shorewall/compiler.pl $options $@ $PERL $debugflags $g_libexec/shorewall/compiler.pl $options $@
else else
exec PERL5LIB=$g_perllib $PERL $debugflags $g_libexec/shorewall/compiler.pl $options $@ PERL5LIB=$g_perllib
export PERL5LIB
$PERL $debugflags $g_libexec/shorewall/compiler.pl $options $@
fi fi
} }