From: Andrew Gaffney Date: Tue, 16 Dec 2008 02:43:07 +0000 (-0600) Subject: We don't need to add - to UTILS_CROSS_COMPILE since it's already there X-Git-Tag: v3.4.10.903~16 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=57d32fcf135d6aee5ad9eaf411000ce4c3a48906;p=genkernel.git We don't need to add - to UTILS_CROSS_COMPILE since it's already there --- diff --git a/ChangeLog b/ChangeLog index 8d8cfbe..91b10a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2008 Gentoo Foundation; 2008 Chris Gianelloni, Andrew Gaffney # Distributed under the GPL v2 + 16 Dec 2008; Andrew Gaffney gen_compile.sh: + We don't need to add - to UTILS_CROSS_COMPILE since it's already there + 16 Dec 2008; Andrew Gaffney defaults/busy-config, gen_compile.sh, +netboot/busy-config: Separate out main and netboot busy-config diff --git a/gen_compile.sh b/gen_compile.sh index 1136d3d..40ba84e 100644 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -35,9 +35,9 @@ compile_utils_args() if [ -n "${UTILS_CROSS_COMPILE}" ] then - UTILS_CC="${UTILS_CROSS_COMPILE}-gcc" - UTILS_LD="${UTILS_CROSS_COMPILE}-ld" - UTILS_AS="${UTILS_CROSS_COMPILE}-as" + UTILS_CC="${UTILS_CROSS_COMPILE}gcc" + UTILS_LD="${UTILS_CROSS_COMPILE}ld" + UTILS_AS="${UTILS_CROSS_COMPILE}as" fi if [ "${UTILS_ARCH}" != '' ]