Explicitly set UTILS_{CC,LD,AS} if UTILS_CROSS_COMPILE is set
authorAndrew Gaffney <agaffney@gentoo.org>
Sun, 14 Dec 2008 21:05:07 +0000 (15:05 -0600)
committerAndrew Gaffney <agaffney@gentoo.org>
Sun, 14 Dec 2008 21:05:07 +0000 (15:05 -0600)
ChangeLog
gen_compile.sh

index e20159a094134f4a5ecf1b3e7921f412336f583a..ad5421b797575a3a71a1254138609738cb7abfaa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2008 Gentoo Foundation; 2008 Chris Gianelloni, Andrew Gaffney
 # Distributed under the GPL v2
 
+  14 Dec 2008; Andrew Gaffney <agaffney@gentoo.org> gen_compile.sh:
+  Explicitly set UTILS_{CC,LD,AS} if UTILS_CROSS_COMPILE is set
+
   14 Dec 2008; Andrew Gaffney <agaffney@gentoo.org> gen_cmdline.sh:
   Typo fix for gentoo bug #250875
 
index 743488f6efb87ab1fba83a20a5fcb5ea189fbd18..faf40763b7ec2dc66cda097c856cd8632da3f065 100644 (file)
@@ -31,8 +31,15 @@ compile_kernel_args() {
 compile_utils_args()
 {
        local ARGS
-
        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"
+       fi
+
        if [ "${UTILS_ARCH}" != '' ]
        then
                ARGS="ARCH=\"${UTILS_ARCH}\""