Correct syntax error in configure

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2012-03-29 18:50:53 -07:00
parent 82e7bc707d
commit 74ca7b5269

View File

@ -58,7 +58,7 @@ for p in $@; do
pn=${p%=*}
pv=${p#*=}
if [ -n ${pn} ]; then
if [ -n "${pn}" ]; then
case ${pn} in
VENDOR)
pn=HOST
@ -73,7 +73,7 @@ for p in $@; do
pn=CONFDIR
;;
esac
params[${pn}]="${pv}"
fi
done