From: jbeulich Date: Thu, 10 Jun 2010 11:58:28 +0000 (+0000) Subject: gcc/ X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=4f132c1138c85ae9eb745496144c58c96e55771c gcc/ 2010-06-10 Jan Beulich * configure.ac: Replace $() with ${} when intending to expand variables rather than invoking commands. * configure: Re-generate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160538 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6c442b59e8a..a083f5c2b9a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-06-10 Jan Beulich + + * configure.ac: Replace $() with ${} when intending to expand + variables rather than invoking commands. + * configure: Re-generate. + 2010-06-10 Jan Hubicka PR rtl-optimization/44460 diff --git a/gcc/configure b/gcc/configure index 97642e8a164..33aa2cf5601 100755 --- a/gcc/configure +++ b/gcc/configure @@ -7549,7 +7549,7 @@ test -n "$BISON" || BISON="$MISSING bison" # NM if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \ && test -d ../binutils ; then - NM='$(objdir)/../binutils/nm-new' + NM='${objdir}/../binutils/nm-new' else # Extract the first word of "nm", so it can be a program name with args. set dummy nm; ac_word=$2 @@ -7594,7 +7594,7 @@ fi # AR if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \ && test -d ../binutils ; then - AR='$(objdir)/../binutils/ar' + AR='${objdir}/../binutils/ar' else # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 diff --git a/gcc/configure.ac b/gcc/configure.ac index ebf291040c9..7b1b72eed3b 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -913,7 +913,7 @@ AC_CHECK_PROGS([BISON], bison, [$MISSING bison]) # NM if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \ && test -d ../binutils ; then - NM='$(objdir)/../binutils/nm-new' + NM='${objdir}/../binutils/nm-new' else AC_CHECK_PROG(NM, nm, nm, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing nm) fi @@ -921,7 +921,7 @@ fi # AR if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \ && test -d ../binutils ; then - AR='$(objdir)/../binutils/ar' + AR='${objdir}/../binutils/ar' else AC_CHECK_PROG(AR, ar, ar, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing ar) fi