From 2757d6d1f6e5834467697e571bde8fec564439a7 Mon Sep 17 00:00:00 2001 From: Roland Hieber Date: Sat, 12 Dec 2020 21:25:32 +0100 Subject: [PATCH] openct: remove lines that resulted in a no-op MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also remove /run/openct/status from FILES_${PN}, which isn't being created at all by the recipe – even openct's configure script references it as /var/run/openct/. Fixes: 387824f1763c573fd05c (2016-02-28, "openct: Fix rootfs creation errors") Fixes: 8e61ff98e9fd83aad1a5 (2019-11-21, "openct: merge do_install and do_install_append") Signed-off-by: Roland Hieber Signed-off-by: Khem Raj --- meta-oe/recipes-support/openct/openct_0.6.20.bb | 7 ------- 1 file changed, 7 deletions(-) diff --git a/meta-oe/recipes-support/openct/openct_0.6.20.bb b/meta-oe/recipes-support/openct/openct_0.6.20.bb index 1514c7a958..f647786e2b 100644 --- a/meta-oe/recipes-support/openct/openct_0.6.20.bb +++ b/meta-oe/recipes-support/openct/openct_0.6.20.bb @@ -46,7 +46,6 @@ FILES_${PN} += " \ ${nonarch_base_libdir}/udev \ ${libdir}/openct-ifd.so \ ${libdir}/pcsc \ - /run/openct/status \ " FILES_${PN}-dbg += " \ @@ -79,10 +78,4 @@ do_install () { so=$(find ${D} -name \*.so | sed "s|^${D}||") sed -i -e 's|\\(LIBPATH\\s*\\).*|\\1$so|' etc/reader.conf install -Dpm 644 etc/reader.conf ${D}/etc/reader.conf.d/openct.conf - - install -dm 755 ${D}${localstatedir}/run/openct - touch ${D}${localstatedir}/run/openct/status - chmod 644 ${D}${localstatedir}/run/openct/status - - rm -r ${D}/${localstatedir}/run }