From 37dd2f3dc8e6de862f939c11ec5fd6342d5ca3d5 Mon Sep 17 00:00:00 2001 From: NicJA Date: Wed, 11 Feb 2015 14:36:15 +0000 Subject: [PATCH] corrections git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@50074 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- configure | 11 ++++++----- configure.in | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/configure b/configure index ead424f645..4839919317 100755 --- a/configure +++ b/configure @@ -912,6 +912,7 @@ with_elf_toolchain_prefix with_aros_toolchain enable_crosstools with_aros_toolchain_install +with_binutils_version with_gcc_version enable_objc enable_java @@ -1642,7 +1643,7 @@ Optional Packages: --with-aros-toolchain-install=DIR Where to install or search for cross tools binaries --with-binutils-version=VERSION - Use gcc-VERSION for building AROS + Use binutils-VERSION for building AROS --with-gcc-version=VERSION Use gcc-VERSION for building AROS --with-cpu= Specify minumum CPU (default=$gcc_default_cpu). @@ -8611,9 +8612,9 @@ $as_echo "$AROS_CROSSTOOLSDIR" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking what specific target binutils version to use" >&5 $as_echo_n "checking what specific target binutils version to use... " >&6; } -# Check whether --with-gcc-version was given. -if test "${with_gcc_version+set}" = set; then : - withval=$with_gcc_version; use_binutils_version="$withval" +# Check whether --with-binutils-version was given. +if test "${with_binutils_version+set}" = set; then : + withval=$with_binutils_version; use_binutils_version="$withval" else use_binutils_version="" fi @@ -8621,7 +8622,7 @@ fi if test "$use_binutils_version" = ""; then target_binutils_version="$default_binutils_version" else - target_gcc_version="$use_binutils_version" + target_binutils_version="$use_binutils_version" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $target_binutils_version" >&5 $as_echo "$target_binutils_version" >&6; } diff --git a/configure.in b/configure.in index 7ac71a733a..1f3c51014f 100644 --- a/configure.in +++ b/configure.in @@ -1547,11 +1547,11 @@ AC_MSG_RESULT($AROS_CROSSTOOLSDIR) #----------------------------------------------------------------------------- AC_MSG_CHECKING([what specific target binutils version to use]) -AC_ARG_WITH(gcc-version,AC_HELP_STRING([--with-binutils-version=VERSION],[Use gcc-VERSION for building AROS]),use_binutils_version="$withval",use_binutils_version="") +AC_ARG_WITH(binutils-version,AC_HELP_STRING([--with-binutils-version=VERSION],[Use binutils-VERSION for building AROS]),use_binutils_version="$withval",use_binutils_version="") if test "$use_binutils_version" = ""; then target_binutils_version="$default_binutils_version" else - target_gcc_version="$use_binutils_version" + target_binutils_version="$use_binutils_version" fi AC_MSG_RESULT($target_binutils_version) -- 2.11.4.GIT