diff options
author | Daiane Angolini <daiane.angolini@freescale.com> | 2012-07-04 15:30:59 -0500 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2012-07-04 17:36:04 -0300 |
commit | ed5d72ecb0d9293f94346c9ceffa38ca46a75c3a (patch) | |
tree | 59b0fb2fe038800aae9ef5701033e1f870af2516 | |
parent | 1df5bdaf66097a7edf57e80c50535433b161f21a (diff) | |
download | meta-fsl-arm-ed5d72ecb0d9293f94346c9ceffa38ca46a75c3a.tar.gz |
amd-gpu-x11-bin-mx51: Fix lib installation
Copy every .so* file instead of copy only .so file
Signed-off-by: Daiane Angolini <daiane.angolini@freescale.com>
-rw-r--r-- | recipes-graphics/amd-gpu-x11-bin/amd-gpu-x11-bin-mx51_11.09.01.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-graphics/amd-gpu-x11-bin/amd-gpu-x11-bin-mx51_11.09.01.bb b/recipes-graphics/amd-gpu-x11-bin/amd-gpu-x11-bin-mx51_11.09.01.bb index 52a8069..10f2e6e 100644 --- a/recipes-graphics/amd-gpu-x11-bin/amd-gpu-x11-bin-mx51_11.09.01.bb +++ b/recipes-graphics/amd-gpu-x11-bin/amd-gpu-x11-bin-mx51_11.09.01.bb | |||
@@ -4,7 +4,7 @@ | |||
4 | DESCRIPTION = "GPU driver and apps for x11 on mx51" | 4 | DESCRIPTION = "GPU driver and apps for x11 on mx51" |
5 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
6 | SECTION = "libs" | 6 | SECTION = "libs" |
7 | PR = "r5" | 7 | PR = "r6" |
8 | 8 | ||
9 | #todo: Replace for correct AMD license | 9 | #todo: Replace for correct AMD license |
10 | LIC_FILES_CHKSUM = "file://usr/include/VG/openvg.h;endline=30;md5=b0109611dd76961057d4c45ae6519802" | 10 | LIC_FILES_CHKSUM = "file://usr/include/VG/openvg.h;endline=30;md5=b0109611dd76961057d4c45ae6519802" |
@@ -21,7 +21,7 @@ do_install () { | |||
21 | install -d ${D}${includedir} | 21 | install -d ${D}${includedir} |
22 | 22 | ||
23 | cp -axr ${S}/usr/bin/* ${D}${bindir} | 23 | cp -axr ${S}/usr/bin/* ${D}${bindir} |
24 | cp -L ${S}/usr/lib/*.so ${D}${libdir} | 24 | cp -L ${S}/usr/lib/*.so* ${D}${libdir} |
25 | cp -axr ${S}/usr/include/* ${D}${includedir} | 25 | cp -axr ${S}/usr/include/* ${D}${includedir} |
26 | 26 | ||
27 | find ${D}${bindir} -type f -exec chmod 755 {} \; | 27 | find ${D}${bindir} -type f -exec chmod 755 {} \; |