mirror of
https://gitlab.com/shorewall/code.git
synced 2025-01-03 12:09:14 +01:00
Correct syntax error in configure
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
82e7bc707d
commit
74ca7b5269
4
Shorewall-core/configure
vendored
4
Shorewall-core/configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user