diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-07-28 15:59:04 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-01 13:58:14 +0100 |
commit | 7a9ea28e69e8121a559f610dd2330edd33f0a907 (patch) | |
tree | cdd7e06498c9720bdcdb5ed72ea859adfb07a8be /meta/conf/machine/include/powerpc | |
parent | 87d68520c190007869ed1877fbb40eef23763524 (diff) | |
download | openembedded-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/include/powerpc')
-rw-r--r-- | meta/conf/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 a99f18d4794..e55910c6986 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" |