diff options
author | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-07 14:01:40 +0000 |
---|---|---|
committer | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-07 14:01:40 +0000 |
commit | a6c599b5034c501958688df4eccd0b5588ba2ab1 (patch) | |
tree | 2e0c58a876c3ab4807954cfeec7d857dd2ef4aab /config/acx.m4 | |
parent | 89cd00700887cf6cc5d244d8175c6a4b82491aa2 (diff) | |
download | gcc-a6c599b5034c501958688df4eccd0b5588ba2ab1.tar.gz |
* configure: Regenerate.
config/:
* acx.m4 (GCC_TARGET_TOOL): Expand backquotes outside
AC_MSG_RESULT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122659 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config/acx.m4')
-rw-r--r-- | config/acx.m4 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/acx.m4 b/config/acx.m4 index d2d227d2de0..a8970759f5c 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)' |