From: Cristian Ciupitu Date: Fri, 29 Jun 2012 13:17:26 +0000 (+0300) Subject: runqemu: fix fedora pkg names when run fails X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~41017 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2b6f9c3a8b4f87b5570b78766a118e4290d773a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- diff --git a/scripts/runqemu b/scripts/runqemu index 1e803edd1b3..9fdbd5487ee 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