aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2007-03-07 14:01:40 +0000
committerAndreas Schwab <schwab@gcc.gnu.org>2007-03-07 14:01:40 +0000
commit172e41aaeec354bf70d4a2862bc8a5105a101d66 (patch)
tree2e0c58a876c3ab4807954cfeec7d857dd2ef4aab /config
parenta566d0500260adef9bbf1a11a4995cd55602d480 (diff)
downloadgcc-172e41aaeec354bf70d4a2862bc8a5105a101d66.zip
gcc-172e41aaeec354bf70d4a2862bc8a5105a101d66.tar.gz
gcc-172e41aaeec354bf70d4a2862bc8a5105a101d66.tar.bz2
configure: Regenerate.
* configure: Regenerate. config/: * acx.m4 (GCC_TARGET_TOOL): Expand backquotes outside AC_MSG_RESULT. From-SVN: r122659
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog5
-rw-r--r--config/acx.m46
2 files changed, 9 insertions, 2 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 84cf9a0..f0cda7a 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-07 Andreas Schwab <schwab@suse.de>
+
+ * acx.m4 (GCC_TARGET_TOOL): Expand backquotes outside
+ AC_MSG_RESULT.
+
2007-02-27 Alan Modra <amodra@bigpond.net.au>
* mt-spu (all-ld): Depend on all-binutils.
diff --git a/config/acx.m4 b/config/acx.m4
index d2d227d..a897075 100644
--- a/config/acx.m4
+++ b/config/acx.m4
@@ -485,7 +485,8 @@ AC_DEFUN([GCC_TARGET_TOOL],
if test "x${build}" != "x${host}" ; then
if expr "x[$]$2" : "x/" > /dev/null; then
# We already found the complete path
- AC_MSG_RESULT(pre-installed in `dirname [$]$2`)
+ ac_dir=`dirname [$]$2`
+ AC_MSG_RESULT(pre-installed in $ac_dir)
else
# Canadian cross, just use what we found
AC_MSG_RESULT(pre-installed)
@@ -508,7 +509,8 @@ else
AC_MSG_RESULT(just compiled)
el])if expr "x[$]$2" : "x/" > /dev/null; then
# We already found the complete path
- AC_MSG_RESULT(pre-installed in `dirname [$]$2`)
+ ac_dir=`dirname [$]$2`
+ AC_MSG_RESULT(pre-installed in $ac_dir)
elif test "x$target" = "x$host"; then
# We can use an host tool
$2='$($3)'