From a1ad0807b0926eae29268012c1ff2e410ed592ed Mon Sep 17 00:00:00 2001 From: weissms Date: Fri, 5 Oct 2012 08:55:22 +0000 Subject: [PATCH] Solve a configure problem by using the computed $aros_target_cpu. This fix was only possible with the help of PHvdMuijzenberg doing most of work in tracking this down to the spot. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@45865 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- configure | 7 ++++--- configure.in | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/configure b/configure index bb8937f1e6..311214cfb7 100755 --- a/configure +++ b/configure @@ -8665,7 +8665,8 @@ fi # kernel_tool_version {"",[version]} # aros_gcc_version {"",[version]} # kernel_tool_prefix {none,[some-arch-os-]} -# aros_tool_prefix ${target_cpu}-aros- +# target_tool_prefix ${aros_target_cpu}-aros- +# aros_tool_prefix ${aros_target_cpu}-aros- # # The output is # aros_kernel_{cpp,cc,ar,ld,as,ranlib,nm,strip} @@ -8702,7 +8703,7 @@ fi # fi # fi # -target_tool_prefix="${target_cpu}-aros-" +target_tool_prefix="${aros_target_cpu}-aros-" { $as_echo "$as_me:${as_lineno-$LINENO}: checking which kernel tools" >&5 $as_echo_n "checking which kernel tools... " >&6; } @@ -8715,7 +8716,7 @@ if test "$kernel_tool_prefix" = "none" ; then fi else # Kernel tools required - find them - # Note that 'normally', aros_kernel_* overrides will + # Note that 'normally', aros_kernel_* overrides will be # empty, unless specified in the per-arch sections above. if test "x$aros_kernel_cpp" = "x"; then aros_kernel_cpp=${kernel_tool_prefix}cpp diff --git a/configure.in b/configure.in index a4ce89dc4c..f4cb7130b4 100644 --- a/configure.in +++ b/configure.in @@ -1621,7 +1621,8 @@ fi # kernel_tool_version {"",[version]} # aros_gcc_version {"",[version]} # kernel_tool_prefix {none,[some-arch-os-]} -# aros_tool_prefix ${target_cpu}-aros- +# target_tool_prefix ${aros_target_cpu}-aros- +# aros_tool_prefix ${aros_target_cpu}-aros- # # The output is # aros_kernel_{cpp,cc,ar,ld,as,ranlib,nm,strip} @@ -1658,7 +1659,7 @@ fi # fi # fi # -target_tool_prefix="${target_cpu}-aros-" +target_tool_prefix="${aros_target_cpu}-aros-" AC_MSG_CHECKING([which kernel tools]) AC_MSG_RESULT([$kernel_tool_prefix]); @@ -1670,7 +1671,7 @@ if test "$kernel_tool_prefix" = "none" ; then fi else # Kernel tools required - find them - # Note that 'normally', aros_kernel_* overrides will + # Note that 'normally', aros_kernel_* overrides will be # empty, unless specified in the per-arch sections above. if test "x$aros_kernel_cpp" = "x"; then aros_kernel_cpp=${kernel_tool_prefix}cpp -- 2.11.4.GIT