From: André Draszik Date: Fri, 19 Aug 2016 10:49:02 +0000 (+0100) Subject: libffi: fix a typo (mips) X-Git-Tag: uninative-1.4~500 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=45b27564324c754a34a1930437a7167079fe1ee4;p=openembedded-core.git 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. Signed-off-by: André Draszik Signed-off-by: Richard Purdie --- 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}" # Doesn't compile in MIPS16e mode due to use of hand-written # assembly -MIPS_INSTRUCTION_SET = "mips16" +MIPS_INSTRUCTION_SET = "mips" BBCLASSEXTEND = "native nativesdk"