Commit 7903cebc by Nathanael Nerode

configure.in: Clean up some feedback echoes.

	* configure.in: Clean up some feedback echoes.
	* configure: Regenerate.

From-SVN: r72503
parent 87690a2f
2003-10-14 Nathanael Nerode <neroden@gcc.gnu.org> 2003-10-14 Nathanael Nerode <neroden@gcc.gnu.org>
* configure.in: Clean up some feedback echoes.
* configure: Regenerate.
* aclocal.m4: Properly quote names of macros being defined. * aclocal.m4: Properly quote names of macros being defined.
* config.gcc (am33_2.0-*-linux*): Use t-slibgcc-elf-ver. * config.gcc (am33_2.0-*-linux*): Use t-slibgcc-elf-ver.
......
...@@ -7900,30 +7900,22 @@ objdir=`${PWDCMD-pwd}` ...@@ -7900,30 +7900,22 @@ objdir=`${PWDCMD-pwd}`
# Echo that links are built # Echo link setup.
if test x$host = x$target if test x${build} = x${host} ; then
then if test x${host} = x${target} ; then
str1="native " echo "Links are now set up to build a native compiler for ${target}." 1>&2
else
echo "Links are now set up to build a cross-compiler" 1>&2
echo " from ${host} to ${target}." 1>&2
fi
else else
str1="cross-" if test x${host} = x${target} ; then
str2=" from $host" echo "Links are now set up to build (on ${build}) a native compiler" 1>&2
fi echo " for ${target}." 1>&2
else
if test x$host != x$build echo "Links are now set up to build (on ${build}) a cross-compiler" 1>&2
then echo " from ${host} to ${target}." 1>&2
str3=" on a $build system" fi
fi
if test "x$str2" != x || test "x$str3" != x
then
str4=
fi
echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
if test "x$str2" != x || test "x$str3" != x
then
echo " ${str2}${str3}." 1>&2
fi fi
# Configure the subdirectories # Configure the subdirectories
......
...@@ -2988,30 +2988,22 @@ AC_SUBST(target_cpu_default) ...@@ -2988,30 +2988,22 @@ AC_SUBST(target_cpu_default)
AC_SUBST_FILE(language_hooks) AC_SUBST_FILE(language_hooks)
# Echo that links are built # Echo link setup.
if test x$host = x$target if test x${build} = x${host} ; then
then if test x${host} = x${target} ; then
str1="native " echo "Links are now set up to build a native compiler for ${target}." 1>&2
else
echo "Links are now set up to build a cross-compiler" 1>&2
echo " from ${host} to ${target}." 1>&2
fi
else else
str1="cross-" if test x${host} = x${target} ; then
str2=" from $host" echo "Links are now set up to build (on ${build}) a native compiler" 1>&2
fi echo " for ${target}." 1>&2
else
if test x$host != x$build echo "Links are now set up to build (on ${build}) a cross-compiler" 1>&2
then echo " from ${host} to ${target}." 1>&2
str3=" on a $build system" fi
fi
if test "x$str2" != x || test "x$str3" != x
then
str4=
fi
echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
if test "x$str2" != x || test "x$str3" != x
then
echo " ${str2}${str3}." 1>&2
fi fi
# Configure the subdirectories # Configure the subdirectories
......
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