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} ...@@ -2169,7 +2169,7 @@ if ${plugin_support}
then then
for plugin in `echo ${PLUGINS}` for plugin in `echo ${PLUGINS}`
do do
typeset ${plugin}_plugin=yes eval "${plugin}_plugin=yes"
done done
else else
BUILTINS="${BUILTINS} ${PLUGINS}" BUILTINS="${BUILTINS} ${PLUGINS}"
...@@ -2182,7 +2182,7 @@ then ...@@ -2182,7 +2182,7 @@ then
builtin_support=: builtin_support=:
for builtin in `echo ${BUILTINS}` for builtin in `echo ${BUILTINS}`
do do
typeset ${builtin}_builtin=yes eval "${builtin}_builtin=yes"
done done
fi] fi]
AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support}) 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