summaryrefslogtreecommitdiffstats
path: root/meta-emenlow/recipes-graphics/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@intel.com>2011-07-13 23:45:00 -0500
committerBeth Flanagan <elizabeth.flanagan@intel.com>2011-07-15 15:59:18 -0700
commit738d2bc6d1a0d7ff6589000893c1c8b4f983d76f (patch)
treeb4c6e78226af9668682e574858ed77f1732289f0 /meta-emenlow/recipes-graphics/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
parent92fc07a5f1b98779806cdcc2341487ff5ea5a238 (diff)
downloadmeta-intel-1.1_M2.tar.gz
meta-emenlow: fix glx bug1.1_M2.rc31.1_M2.final1.1_M2
AIGLX wasn't finding a couple libraries, causing errors such as Yocto bug #1235 - 'Running glxinfo and glxgears commands failed.'. This provides symlinks allowing it to find the needed libraries. Fixes [YOCTO #1235] Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'meta-emenlow/recipes-graphics/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb')
-rw-r--r--meta-emenlow/recipes-graphics/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-emenlow/recipes-graphics/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb b/meta-emenlow/recipes-graphics/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
index d0e14a56..5153054c 100644
--- a/meta-emenlow/recipes-graphics/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
+++ b/meta-emenlow/recipes-graphics/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
@@ -1,7 +1,7 @@
1DESCRIPTION = "Userspace interface to kernel DRM services" 1DESCRIPTION = "Userspace interface to kernel DRM services"
2LICENSE = "MIT" 2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://MIT_License.txt;md5=732825ecdcf420261531d935fcd914a7" 3LIC_FILES_CHKSUM = "file://MIT_License.txt;md5=732825ecdcf420261531d935fcd914a7"
4PR = "r4" 4PR = "r5"
5 5
6PROVIDES = "libdrm-poulsbo" 6PROVIDES = "libdrm-poulsbo"
7 7
@@ -17,3 +17,7 @@ do_configure_prepend() {
17 sed -e 's/-ldrm/-ldrm_poulsbo/' -e 's/libdrm/libdrm_poulsbo/' \ 17 sed -e 's/-ldrm/-ldrm_poulsbo/' -e 's/libdrm/libdrm_poulsbo/' \
18 < ${S}/libdrm.pc.in > ${S}/libdrm_poulsbo.pc.in 18 < ${S}/libdrm.pc.in > ${S}/libdrm_poulsbo.pc.in
19} 19}
20
21do_install_append() {
22 ln -s libdrm_poulsbo.so.2.3.0 ${D}${libdir}/libdrm.so.2
23}