From 977ea55c4d088a2301b3076b40a9d495ebabd940 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Thu, 28 Jul 2011 15:59:04 -0500 Subject: tune/arch-powerpc64: Fix typo with 64-bit TUNE_CCARGS handling When figuring out how to set TUNE_CCARGS we should look for 'm64' not 'n64' in TUNE_FEATURES. (From OE-Core rev: 7a9ea28e69e8121a559f610dd2330edd33f0a907) Signed-off-by: Kumar Gala Signed-off-by: Richard Purdie --- meta/conf/machine/include/powerpc/arch-powerpc64.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/machine/include/powerpc/arch-powerpc64.inc b/meta/conf/machine/include/powerpc/arch-powerpc64.inc index a99f18d479..e55910c698 100644 --- a/meta/conf/machine/include/powerpc/arch-powerpc64.inc +++ b/meta/conf/machine/include/powerpc/arch-powerpc64.inc @@ -1,6 +1,6 @@ TUNEVALID[m64] = "Power ELF64 standard ABI" TUNE_CONFLICTS[m64] = "m32" -TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "n64", "-m64", "", d)}" +TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "m64", "-m64", "", d)}" TUNE_ARCH .= "${@bb.utils.contains("TUNE_FEATURES", [ "m64" ], "powerpc64", "", d)}" AVAILTUNES += "powerpc64 powerpc64-nf" -- cgit v1.2.3-54-g00ecf