diff options
author | Mike Stump <mrs@apple.com> | 2007-07-02 18:06:53 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2007-07-02 18:06:53 +0000 |
commit | d3f5afc4f955f0a73219064c528efacbd7be071a (patch) | |
tree | 280bc9236bef907be543d98a8e892bd5217c409d /config/acx.m4 | |
parent | a4954f26af9ede8ca8273d628032c0f632728b40 (diff) | |
download | gdb-d3f5afc4f955f0a73219064c528efacbd7be071a.zip gdb-d3f5afc4f955f0a73219064c528efacbd7be071a.tar.gz gdb-d3f5afc4f955f0a73219064c528efacbd7be071a.tar.bz2 |
* acx.m4 (ACX_CHECK_INSTALLED_TARGET_TOOL): Fixup logic for cross
builds.
* acx.m4 (NCN_STRICT_CHECK_TARGET_TOOLS): Fix incremental builds.
(ACX_HAVE_GCC_FOR_TARGET): Likewise.
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 a70d407..c8a32c9 100644 --- a/config/acx.m4 +++ b/config/acx.m4 @@ -211,6 +211,8 @@ if test -z "$ac_cv_prog_$1" ; then else $1="${ncn_target_tool_prefix}[$]2" fi], [$1="$3"]) +else + $1="$ac_cv_prog_$1" fi ]) []dnl # NCN_STRICT_CHECK_TARGET_TOOLS @@ -324,8 +326,8 @@ if test -z "$ac_cv_path_$1" ; then fi elif test $build != $host && test $have_gcc_for_target = yes; then $1=`$GCC_FOR_TARGET --print-prog-name=$2` - test [$]$1=$2 && $1= - ac_cv_path_$1=[$]$1 + test [$]$1 = $2 && $1= + test -n "[$]$1" && ac_cv_path_$1=[$]$1 fi fi if test -z "$ac_cv_path_$1" && test -n "$gcc_cv_tool_dirs"; then |