Expunge the g_perllib variable

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep
2012-10-01 06:59:39 -07:00
parent a8e9296473
commit 92d39dc56d
6 changed files with 2 additions and 7 deletions

View File

@ -430,10 +430,10 @@ compiler() {
PERL=/usr/bin/perl
fi
if [ $g_perllib = ${LIBEXECDIR}/shorewall ]; then
if [ ${PERLLIBDIR} = ${LIBEXECDIR}/shorewall ]; then
$PERL $debugflags $pc $options $@
else
PERL5LIB=$g_perllib
PERL5LIB=${PERLLIBDIR}
export PERL5LIB
$PERL $debugflags $pc $options $@
fi