diff options
| author | Tom Hochstein <tom.hochstein@nxp.com> | 2020-09-08 10:55:12 -0700 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2020-09-28 11:08:08 -0300 |
| commit | e785564d7c0ff42343cb9ffd8ff85d6e368b921a (patch) | |
| tree | fddaac25f46ab3318afcd9ef1f7a047966933354 | |
| parent | e8f96b4d56b2b185fa359b9e97542814bea998bb (diff) | |
| download | meta-freescale-e785564d7c0ff42343cb9ffd8ff85d6e368b921a.tar.gz | |
imx-gpu-viv: Extend cleanup code for versioned libraries
The do_install includes code for removing graphics backend-specific
libraries that are not for the selected graphics backend. Extend
this cleanup code to handle libraries with a version suffix.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
(cherry picked from commit b0d43de899f3fc5434067e861b211b964e4700d2)
| -rw-r--r-- | recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc index 33f70c2ed..7ac339bf5 100644 --- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc +++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc | |||
| @@ -257,8 +257,8 @@ do_install () { | |||
| 257 | fi | 257 | fi |
| 258 | 258 | ||
| 259 | for i in wl x11 fb dri; do | 259 | for i in wl x11 fb dri; do |
| 260 | find ${D}${libdir} -name "*-$i.so" -exec rm '{}' ';' | 260 | find ${D}${libdir} -name "*-$i.so*" -exec rm '{}' ';' |
| 261 | find ${D}${libdir} -name "*.$i.so" -exec rm '{}' ';' | 261 | find ${D}${libdir} -name "*.$i.so*" -exec rm '{}' ';' |
| 262 | done | 262 | done |
| 263 | 263 | ||
| 264 | # FIXME: MX6SL does not have 3D support; hack it for now | 264 | # FIXME: MX6SL does not have 3D support; hack it for now |
