[OE-core] [PATCH] runqemu: fix fedora pkg names when run fails

Cristian Ciupitu cristian.ciupitu at yahoo.com
Fri Jun 29 13:17:26 UTC 2012


runqemu can fail to with the following message:

    You need libGL.so and libGLU.so to exist in your library path to run the QEMU emulator.
        Fedora package names are: mesa-libGL mesa-libGLU.

The libGL.so and libGLU.so files are provided by the mesa-libGL-devel
and mesa-libGLU-devel Fedora packages (yum provides '*/libGL*.so').

Signed-off-by: Cristian Ciupitu <cristian.ciupitu at yahoo.com>
---
 scripts/runqemu |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index caabf61..776f885 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -408,7 +408,7 @@ test -e /usr/lib/*-linux-gnu/libGL.so -a -e /usr/lib/*-linux-gnu/libGLU.so && li
 if [ "$libgl" != 'yes' ]; then
     echo "You need libGL.so and libGLU.so to exist in your library path to run the QEMU emulator.
     Ubuntu package names are: libgl1-mesa-dev and libglu1-mesa-dev.
-    Fedora package names are: mesa-libGL mesa-libGLU."
+    Fedora package names are: mesa-libGL-devel mesa-libGLU-devel."
     exit 1;
 fi
 
-- 
1.7.10.4





More information about the Openembedded-core mailing list