diff options
author | jbeulich <jbeulich@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-10 11:58:28 +0000 |
---|---|---|
committer | jbeulich <jbeulich@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-10 11:58:28 +0000 |
commit | 4f132c1138c85ae9eb745496144c58c96e55771c (patch) | |
tree | d54c67fa811e93328b1a625f3618025b053f5455 /gcc/configure | |
parent | 7aff31890a7271d2379c49de79dea007253580bd (diff) | |
download | gcc-4f132c1138c85ae9eb745496144c58c96e55771c.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160538 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 4 |
1 files changed, 2 insertions, 2 deletions
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 |