]> code.ossystems Code Review - openembedded-core.git/commitdiff
libepoxy: do not strip RUNPATH from native/nativesdk
authorAlexander Kanavin <alex.kanavin@gmail.com>
Wed, 6 May 2020 19:01:03 +0000 (21:01 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 7 May 2020 11:11:03 +0000 (12:11 +0100)
This was done to fall through to host GL stack; now that
mesa-native with host dri drivers is used instead, this is
no longer necessary or desirable.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-graphics/libepoxy/libepoxy_1.5.4.bb

index af9867407edbf072e0cb7e69032da34a0015c907..0782c6ce353517ac0b2bc2344d7094e0b9ed918c 100644 (file)
@@ -33,11 +33,3 @@ PACKAGECONFIG_class-nativesdk = "egl x11"
 
 BBCLASSEXTEND = "native nativesdk"
 
-# This will ensure that dlopen will attempt only GL libraries provided by host
-do_install_append_class-native() {
-       chrpath --delete ${D}${libdir}/*.so
-}
-
-do_install_append_class-nativesdk() {
-       chrpath --delete ${D}${libdir}/*.so
-}