From 546fb578b55d51b8277ab53b56962ed01961a99e Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Thu, 10 Oct 2002 17:25:28 +0000 Subject: [PATCH] * ./configure.ac.in: dropped the use of typeset in favor of eval to set variable values (ash doesn't have typeset). --- configure.ac.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac.in b/configure.ac.in index 5c78205fa8..28bfe8a5f6 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -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})