[oe-commits] Cristian Ciupitu : runqemu: fix fedora pkg names when run fails

git at git.openembedded.org git at git.openembedded.org
Mon Jul 2 15:42:59 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: f2b6f9c3a8b4f87b5570b78766a118e4290d773a
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=f2b6f9c3a8b4f87b5570b78766a118e4290d773a

Author: Cristian Ciupitu <cristian.ciupitu at yahoo.com>
Date:   Fri Jun 29 16:17:26 2012 +0300

runqemu: fix fedora pkg names when run fails

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>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/runqemu |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index 1e803ed..9fdbd54 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -394,7 +394,7 @@ libgl='no'
 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
 





More information about the Openembedded-commits mailing list