From: Ross Burton Date: Thu, 15 May 2025 15:43:05 +0000 (+0100) Subject: cryptodev-linux: clean up do_install X-Git-Tag: uninative-4.8~419 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=749de43ccc13488c0ec74e4a4257cc25cbf89370;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git cryptodev-linux: clean up do_install The upstream Makefile now supports installing the headers directly[1], so use the target instead of calling install manually. [1] https://github.com/cryptodev-linux/cryptodev-linux/commit/e3962fea4e1816df420c36ad72845f90dfcfb611 Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-kernel/cryptodev/cryptodev-linux_1.14.bb b/meta/recipes-kernel/cryptodev/cryptodev-linux_1.14.bb index d5ea9d85293..451a8d7ef87 100644 --- a/meta/recipes-kernel/cryptodev/cryptodev-linux_1.14.bb +++ b/meta/recipes-kernel/cryptodev/cryptodev-linux_1.14.bb @@ -4,9 +4,8 @@ SUMMARY = "A /dev/crypto device driver header file" do_compile[noexec] = "1" -# Just install cryptodev.h which is the only header file needed to be exported do_install() { - install -D ${S}/crypto/cryptodev.h ${D}${includedir}/crypto/cryptodev.h + oe_runmake headers_install DESTDIR="${D}" } ALLOW_EMPTY:${PN} = "1"