From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com ([192.55.52.93]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1QrYDM-0002k1-0n for openembedded-core@lists.openembedded.org; Thu, 11 Aug 2011 18:34:36 +0200 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 11 Aug 2011 09:30:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.67,357,1309762800"; d="scan'208";a="38285525" Received: from unknown (HELO swold-MOBL.bigsur.com) ([10.255.14.248]) by fmsmga002.fm.intel.com with ESMTP; 11 Aug 2011 09:30:02 -0700 From: Saul Wold To: openembedded-core@lists.openembedded.org Date: Thu, 11 Aug 2011 09:29:49 -0700 Message-Id: X-Mailer: git-send-email 1.7.3.4 In-Reply-To: References: In-Reply-To: References: Subject: [CONSOLIDATED PULL 01/10] scripts/runqemu: Make it run on ubuntu 11.10 X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2011 16:34:36 -0000 From: Khem Raj 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 files changed, 1 insertions(+), 0 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 9611c64..2b8e88a 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. -- 1.7.3.4