aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2010-06-10 11:58:28 +0000
committerJan Beulich <jbeulich@gcc.gnu.org>2010-06-10 11:58:28 +0000
commitbfa912a87bce04f4e79422ed623c6a7ec0f1c416 (patch)
treed54c67fa811e93328b1a625f3618025b053f5455 /gcc/configure
parentfea87e2811720f1fdcc9f4d91326b23f09f50e14 (diff)
downloadgcc-bfa912a87bce04f4e79422ed623c6a7ec0f1c416.zip
gcc-bfa912a87bce04f4e79422ed623c6a7ec0f1c416.tar.gz
gcc-bfa912a87bce04f4e79422ed623c6a7ec0f1c416.tar.bz2
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
Diffstat (limited to 'gcc/configure')
-rwxr-xr-xgcc/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure
index 97642e8..33aa2cf 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