diff options
author | André Draszik <git@andred.net> | 2016-08-19 11:49:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-20 16:06:03 +0100 |
commit | cd3c5582a0ea87da7a97050de61d04c44d9c53db (patch) | |
tree | c05ada7528729bc12b624ca80ad36dce316a6338 /meta | |
parent | 27c0e2f8395e98040473df9bcc1a8a8404294f76 (diff) | |
download | poky-cd3c5582a0ea87da7a97050de61d04c44d9c53db.tar.gz |
libffi: fix a typo (mips)
While code elsewhere checks for
MIPS_INSTRUCTION_SET == mips16e in order to decide how
to compile, hence the typo doesn't affect behaviour, the
intention was to set it to 'mips', as is done everywhere
else. Fixing the typo also helps to avoid confusion.
(From OE-Core rev: 45b27564324c754a34a1930437a7167079fe1ee4)
Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/libffi/libffi_3.2.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/libffi/libffi_3.2.1.bb b/meta/recipes-support/libffi/libffi_3.2.1.bb index 42ab1087f3..0aff3f5466 100644 --- a/meta/recipes-support/libffi/libffi_3.2.1.bb +++ b/meta/recipes-support/libffi/libffi_3.2.1.bb | |||
@@ -25,6 +25,6 @@ FILES_${PN}-dev += "${libdir}/libffi-${PV}" | |||
25 | 25 | ||
26 | # Doesn't compile in MIPS16e mode due to use of hand-written | 26 | # Doesn't compile in MIPS16e mode due to use of hand-written |
27 | # assembly | 27 | # assembly |
28 | MIPS_INSTRUCTION_SET = "mips16" | 28 | MIPS_INSTRUCTION_SET = "mips" |
29 | 29 | ||
30 | BBCLASSEXTEND = "native nativesdk" | 30 | BBCLASSEXTEND = "native nativesdk" |