summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2011-07-28 15:59:04 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-01 13:58:14 +0100
commit7a9ea28e69e8121a559f610dd2330edd33f0a907 (patch)
treecdd7e06498c9720bdcdb5ed72ea859adfb07a8be /meta/conf/machine
parent87d68520c190007869ed1877fbb40eef23763524 (diff)
downloadopenembedded-core-contrib-7a9ea28e69e8121a559f610dd2330edd33f0a907.tar.gz
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@kernel.crashing.org>
Diffstat (limited to 'meta/conf/machine')
-rw-r--r--meta/conf/machine/include/powerpc/arch-powerpc64.inc2
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 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"