diff options
author | Anders Darander <anders@chargestorm.se> | 2011-08-17 15:18:58 +0200 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2011-10-14 09:38:40 -0700 |
commit | bb855dab75941397d3da44994011a678c6427303 (patch) | |
tree | e7a50d624ab2c847b4beca4299db31ffa02545a5 /meta/recipes-devtools | |
parent | 7779a1fedcaa9e0797893d00cff036ecd8823be0 (diff) | |
download | poky-bb855dab75941397d3da44994011a678c6427303.tar.gz |
qemu: modify search paths for libgl
On e.g. Debian libql is found under /usr/lib/x86_64-linux-gnu/libGL.so.
Use a wildcard to match different locations, as uname -i only return unknown on Debian.
(From OE-Core rev: 32f74152dfe583f005c8654910b15cd7d0e3d421)
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 1fb75d90a9..c22ebb9aa7 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -15,7 +15,7 @@ do_configure_prepend_virtclass-native() { | |||
15 | 15 | ||
16 | test -e /usr/lib/libGL.so -a -e /usr/lib/libGLU.so && libgl='yes' | 16 | test -e /usr/lib/libGL.so -a -e /usr/lib/libGLU.so && libgl='yes' |
17 | test -e /usr/lib64/libGL.so -a -e /usr/lib64/libGLU.so && libgl='yes' | 17 | test -e /usr/lib64/libGL.so -a -e /usr/lib64/libGLU.so && libgl='yes' |
18 | test -e /usr/lib/`uname -i`-linux-gnu/libGL.so -a -e /usr/lib/`uname -i`-linux-gnu/libGLU.so && libgl='yes' | 18 | test -e /usr/lib/*-linux-gnu/libGL.so -a -e /usr/lib/*-linux-gnu/libGLU.so && libgl='yes' |
19 | 19 | ||
20 | test -e /usr/lib/pkgconfig/sdl.pc -o -e /usr/lib64/pkgconfig/sdl.pc -o -e /usr/include/SDL/SDL.h && libsdl='yes' | 20 | test -e /usr/lib/pkgconfig/sdl.pc -o -e /usr/lib64/pkgconfig/sdl.pc -o -e /usr/include/SDL/SDL.h && libsdl='yes' |
21 | 21 | ||