configure.in: solve the "test: too many arguments" bug

acinclude.m4: don't need the extra MSG response


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6884 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2002-05-21 21:59:25 +00:00
parent 8179770a6d
commit 391e908943
2 changed files with 3 additions and 4 deletions

View File

@ -4245,5 +4245,4 @@ int main ()
AC_DEFINE(HAVE_SCANF_LLD, 1, AC_DEFINE(HAVE_SCANF_LLD, 1,
[Define if scanf supports %lld conversions.]) [Define if scanf supports %lld conversions.])
fi fi
AC_MSG_RESULT($am_cv_scanf_lld)
]) ])

View File

@ -827,9 +827,9 @@ autoconf_major_version=`echo ${AUTOCONF_VERSION} | \
sed 's/^.*GNU Autoconf.* \([[0-9]]*\)\.\([[0-9]]*\).*$/\1/'` sed 's/^.*GNU Autoconf.* \([[0-9]]*\)\.\([[0-9]]*\).*$/\1/'`
autoconf_minor_version=`echo ${AUTOCONF_VERSION} | \ autoconf_minor_version=`echo ${AUTOCONF_VERSION} | \
sed 's/^.*GNU Autoconf.* \([[0-9]]*\)\.\([[0-9]]*\).*$/\2/'` sed 's/^.*GNU Autoconf.* \([[0-9]]*\)\.\([[0-9]]*\).*$/\2/'`
if test $autoconf_major_version -gt 2 -o \ if test "$autoconf_major_version" -gt 2 -o \
\( $autoconf_major_version -eq 2 -a \ \( "$autoconf_major_version" -eq 2 -a \
$autoconf_minor_version -gt 52 \) ; then "$autoconf_minor_version" -gt 52 \) ; then
LIB@&t@OBJS=`echo "$LIB@&t@OBJS" | LIB@&t@OBJS=`echo "$LIB@&t@OBJS" |
sed 's,\.[[^.]]* ,$U&,g;s,\.[[^.]]*$,$U&,'` sed 's,\.[[^.]]* ,$U&,g;s,\.[[^.]]*$,$U&,'`
LTLIBOBJS=`echo "$LIB@&t@OBJS" | LTLIBOBJS=`echo "$LIB@&t@OBJS" |