[oe-commits] Kumar Gala : tune/arch-powerpc64: Fix typo with 64-bit TUNE_CCARGS handling

git version control git at git.openembedded.org
Mon Aug 1 13:00:09 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 7a9ea28e69e8121a559f610dd2330edd33f0a907
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=7a9ea28e69e8121a559f610dd2330edd33f0a907

Author: Kumar Gala <galak at kernel.crashing.org>
Date:   Thu Jul 28 15:59:04 2011 -0500

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.

Signed-off-by: Kumar Gala <galak at kernel.crashing.org>

---

 .../machine/include/powerpc/arch-powerpc64.inc     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/conf/machine/include/powerpc/arch-powerpc64.inc b/meta/conf/machine/include/powerpc/arch-powerpc64.inc
index a99f18d..e55910c 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"





More information about the Openembedded-commits mailing list