From ed8af4957ffd1b1a1be189ec1b6c330f4229a34a Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 3 Apr 2021 10:52:58 +0200 Subject: big-update: respect libdir variable Signed-off-by: Martin Jansa --- recipes-test/big-update/big-update_2.0.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes-test/big-update/big-update_2.0.bb b/recipes-test/big-update/big-update_2.0.bb index e667a4c..e545b72 100644 --- a/recipes-test/big-update/big-update_2.0.bb +++ b/recipes-test/big-update/big-update_2.0.bb @@ -3,13 +3,13 @@ LICENSE = "MPL-2.0" SRC_URI = "file://rand_file.py" -FILES_${PN} = "/usr/lib/big-update" +FILES_${PN} = "${libdir}/big-update" DEPENDS = "coreutils-native" inherit python3native do_install() { - install -d ${D}/usr/lib/big-update - python3 ${S}/../rand_file.py ${D}/usr/lib/big-update/a-big-file $(numfmt --from=iec 12M) + install -d ${D}${libdir}/big-update + python3 ${S}/../rand_file.py ${D}${libdir}/big-update/a-big-file $(numfmt --from=iec 12M) } -- cgit v1.2.3-54-g00ecf