]> code.ossystems Code Review - openembedded-core.git/commitdiff
libffi: fix a typo (mips)
authorAndré Draszik <git@andred.net>
Fri, 19 Aug 2016 10:49:02 +0000 (11:49 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 20 Aug 2016 15:05:28 +0000 (16:05 +0100)
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.

Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-support/libffi/libffi_3.2.1.bb

index 42ab1087f35249fd683944788ac8a22dd66b5772..0aff3f54662ace040d6002e3c855e19c56305d3e 100644 (file)
@@ -25,6 +25,6 @@ FILES_${PN}-dev += "${libdir}/libffi-${PV}"
 
 # Doesn't compile in MIPS16e mode due to use of hand-written
 # assembly
-MIPS_INSTRUCTION_SET = "mips16"
+MIPS_INSTRUCTION_SET = "mips"
 
 BBCLASSEXTEND = "native nativesdk"