From afbc2234898088311c38d78997f63992e38aa08a Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Thu, 20 Apr 2023 13:36:34 +0200 Subject: libgpiod: remove test executables from ${bindir} There's no need to put the test executables into ${bindir} as they're already installed into ${PTEST_PATH}. This just pollutes $PATH. Future libgpiod releases will not install test binaries at all, leaving it to the library users. For now: remove them manually after installation. Signed-off-by: Bartosz Golaszewski Signed-off-by: Khem Raj --- meta-oe/recipes-support/libgpiod/libgpiod.inc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/meta-oe/recipes-support/libgpiod/libgpiod.inc b/meta-oe/recipes-support/libgpiod/libgpiod.inc index 53f9ec49c6..0329caafdf 100644 --- a/meta-oe/recipes-support/libgpiod/libgpiod.inc +++ b/meta-oe/recipes-support/libgpiod/libgpiod.inc @@ -30,17 +30,18 @@ FILES:${PN}-tools += " \ ${bindir}/gpioset \ ${bindir}/gpiomon \ " -FILES:${PN}-ptest += " \ - ${bindir}/gpiod-test \ - ${bindir}/gpio-tools-test \ - ${bindir}/gpio-tools-test.bats \ - ${bindir}/gpiod-cxx-test \ -" FILES:libgpiodcxx = "${libdir}/libgpiodcxx.so.*" RRECOMMENDS:${PN}-ptest += "coreutils" RDEPENDS:${PN}-ptest += "bats" +do_install:append() { + rm -f ${D}${bindir}/gpiod-test + rm -f ${D}${bindir}/gpio-tools-test + rm -f ${D}${bindir}/gpio-tools-test.bats + rm -f ${D}${bindir}/gpiod-cxx-test +} + do_install_ptest() { install -d ${D}${PTEST_PATH}/tests/ -- cgit v1.2.3-54-g00ecf