Commit 546fb578 authored by Sam Hocevar's avatar Sam Hocevar

* ./configure.ac.in: dropped the use of typeset in favor of eval to

    set variable values (ash doesn't have typeset).
parent 51fa2629
......@@ -2169,7 +2169,7 @@ if ${plugin_support}
then
for plugin in `echo ${PLUGINS}`
do
typeset ${plugin}_plugin=yes
eval "${plugin}_plugin=yes"
done
else
BUILTINS="${BUILTINS} ${PLUGINS}"
......@@ -2182,7 +2182,7 @@ then
builtin_support=:
for builtin in `echo ${BUILTINS}`
do
typeset ${builtin}_builtin=yes
eval "${builtin}_builtin=yes"
done
fi]
AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment