Commit bfa912a8 by Jan Beulich Committed by Jan Beulich

configure.ac: Replace $() with ${} when intending to expand variables rather than invoking...

gcc/
2010-06-10  Jan Beulich  <jbeulich@novell.com>

	* configure.ac: Replace $() with ${} when intending to expand
	variables rather than invoking commands.
	* configure: Re-generate.

From-SVN: r160538
parent fea87e28
2010-06-10 Jan Beulich <jbeulich@novell.com>
* configure.ac: Replace $() with ${} when intending to expand
variables rather than invoking commands.
* configure: Re-generate.
2010-06-10 Jan Hubicka <jh@suse.cz> 2010-06-10 Jan Hubicka <jh@suse.cz>
PR rtl-optimization/44460 PR rtl-optimization/44460
......
...@@ -7549,7 +7549,7 @@ test -n "$BISON" || BISON="$MISSING bison" ...@@ -7549,7 +7549,7 @@ test -n "$BISON" || BISON="$MISSING bison"
# NM # NM
if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \ if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \
&& test -d ../binutils ; then && test -d ../binutils ; then
NM='$(objdir)/../binutils/nm-new' NM='${objdir}/../binutils/nm-new'
else else
# Extract the first word of "nm", so it can be a program name with args. # Extract the first word of "nm", so it can be a program name with args.
set dummy nm; ac_word=$2 set dummy nm; ac_word=$2
...@@ -7594,7 +7594,7 @@ fi ...@@ -7594,7 +7594,7 @@ fi
# AR # AR
if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \ if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \
&& test -d ../binutils ; then && test -d ../binutils ; then
AR='$(objdir)/../binutils/ar' AR='${objdir}/../binutils/ar'
else else
# Extract the first word of "ar", so it can be a program name with args. # Extract the first word of "ar", so it can be a program name with args.
set dummy ar; ac_word=$2 set dummy ar; ac_word=$2
......
...@@ -913,7 +913,7 @@ AC_CHECK_PROGS([BISON], bison, [$MISSING bison]) ...@@ -913,7 +913,7 @@ AC_CHECK_PROGS([BISON], bison, [$MISSING bison])
# NM # NM
if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \ if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \
&& test -d ../binutils ; then && test -d ../binutils ; then
NM='$(objdir)/../binutils/nm-new' NM='${objdir}/../binutils/nm-new'
else else
AC_CHECK_PROG(NM, nm, nm, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing nm) AC_CHECK_PROG(NM, nm, nm, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing nm)
fi fi
...@@ -921,7 +921,7 @@ fi ...@@ -921,7 +921,7 @@ fi
# AR # AR
if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \ if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \
&& test -d ../binutils ; then && test -d ../binutils ; then
AR='$(objdir)/../binutils/ar' AR='${objdir}/../binutils/ar'
else else
AC_CHECK_PROG(AR, ar, ar, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing ar) AC_CHECK_PROG(AR, ar, ar, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing ar)
fi fi
......
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