mirror of
https://git.yoctoproject.org/poky
synced 2026-03-12 18:29:42 +01:00
These files are checked by qa_check_staged but there was no test cases for whether the tests actually worked. Now there are. (From OE-Core rev: 2a96719a201cb7b8db774718adec89dbd7e1aec3) Signed-off-by: Paulo Neves <ptsneves@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
394 B
BlitzBasic
17 lines
394 B
BlitzBasic
SUMMARY = "Produce a broken la file"
|
|
LICENSE = "CLOSED"
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
EXCLUDE_FROM_WORLD = "1"
|
|
|
|
# remove-libtool.bbclass is inherited by default and removes all
|
|
# .la files which for this test we specifically do not want.
|
|
REMOVE_LIBTOOL_LA = "0"
|
|
|
|
do_install() {
|
|
install -d ${D}${libdir}/test/
|
|
echo '${WORKDIR}' > ${D}${libdir}/test/la-test.la
|
|
}
|
|
|
|
BBCLASSEXTEND += "native"
|