From: Khem Raj Date: Mon, 8 Aug 2011 06:30:02 +0000 (-0700) Subject: scripts/runqemu: Make it run on ubuntu 11.10 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~44545 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d80918995a15663db7cc9c0683d45ee8ba7d45c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git scripts/runqemu: Make it run on ubuntu 11.10 location of libGL has moved in ubuntu 11.10 so we look for it in the new locations Signed-off-by: Khem Raj --- diff --git a/scripts/runqemu b/scripts/runqemu index 9611c6412e5..2b8e88a47dd 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -388,6 +388,7 @@ libgl='no' test -e /usr/lib/libGL.so -a -e /usr/lib/libGLU.so && libgl='yes' test -e /usr/lib64/libGL.so -a -e /usr/lib64/libGLU.so && libgl='yes' +test -e /usr/lib/`uname -i`-linux-gnu/libGL.so -a -e /usr/lib/`uname -i`-linux-gnu/libGLU.so && libgl='yes' if [ "$libgl" != 'yes' ]; then echo "You need libGL.so and libGLU.so to exist in your library path to run the QEMU emulator.