From 8d80918995a15663db7cc9c0683d45ee8ba7d45c Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sun, 7 Aug 2011 23:30:02 -0700 Subject: 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 --- scripts/runqemu | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/runqemu b/scripts/runqemu index 9611c6412e..2b8e88a47d 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. -- cgit 1.2.3-korg