From 0614f613475fce5787118b2196059273aa7c2e53 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Wed, 11 May 2011 12:58:57 -0700 Subject: [PATCH] Fix PERLLIB --- Shorewall/shorewall | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Shorewall/shorewall b/Shorewall/shorewall index bdda284a5..df475ffd7 100755 --- a/Shorewall/shorewall +++ b/Shorewall/shorewall @@ -366,7 +366,9 @@ compiler() { if [ $g_perllib = share/shorewall ]; then $PERL $debugflags $g_libexec/shorewall/compiler.pl $options $@ 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 }