summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/imx-g2d
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2022-05-11 13:09:37 -0500
committerTom Hochstein <tom.hochstein@nxp.com>2022-05-11 13:09:37 -0500
commitf20a173501a4839b803765b57e3afc5f9f5a2147 (patch)
tree29db1611731b12ebe28de2c1d5bfa361fea87bca /recipes-graphics/imx-g2d
parent89f0d22235b27d0c13452093ff2211333cb7aa9c (diff)
downloadmeta-freescale-f20a173501a4839b803765b57e3afc5f9f5a2147.tar.gz
imx-gpu-g2d: Fix install for multilib
The do_install task doesn't account for multilib. Fix it by using the libdir variable. Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-graphics/imx-g2d')
-rw-r--r--recipes-graphics/imx-g2d/imx-gpu-g2d_6.4.3.p4.0.bb7
1 files changed, 5 insertions, 2 deletions
diff --git a/recipes-graphics/imx-g2d/imx-gpu-g2d_6.4.3.p4.0.bb b/recipes-graphics/imx-g2d/imx-gpu-g2d_6.4.3.p4.0.bb
index 90231106..1f3c2e60 100644
--- a/recipes-graphics/imx-g2d/imx-gpu-g2d_6.4.3.p4.0.bb
+++ b/recipes-graphics/imx-g2d/imx-gpu-g2d_6.4.3.p4.0.bb
@@ -1,5 +1,5 @@
1# Copyright (C) 2016 Freescale Semiconductor 1# Copyright (C) 2016 Freescale Semiconductor
2# Copyright 2017-2021 NXP 2# Copyright 2017-2022 NXP
3# Copyright 2018 (C) O.S. Systems Software LTDA. 3# Copyright 2018 (C) O.S. Systems Software LTDA.
4# Released under the MIT license (see COPYING.MIT for the terms) 4# Released under the MIT license (see COPYING.MIT for the terms)
5 5
@@ -22,7 +22,10 @@ S = "${WORKDIR}/${FSLBIN_NAME}"
22inherit fsl-eula-unpack 22inherit fsl-eula-unpack
23 23
24do_install () { 24do_install () {
25 cp -r -d --no-preserve=ownership ${S}/g2d/* ${D} 25 install -d ${D}${libdir}
26 install -d ${D}${includedir}
27 cp -r ${S}/g2d/usr/lib/*.so* ${D}${libdir}
28 cp -Pr ${S}/g2d/usr/include/* ${D}${includedir}
26} 29}
27 30
28INSANE_SKIP:${PN} = "ldflags" 31INSANE_SKIP:${PN} = "ldflags"