From: Ross Burton Date: Thu, 18 Jan 2007 11:38:52 +0000 (+0000) Subject: Fix regexp to work with qemux86 X-Git-Tag: 2011-1~12247 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=85788ed18f20fc0321b678b288fac9d8d3abebcf;p=openembedded-core.git Fix regexp to work with qemux86 git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1163 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/scripts/poky-qemu b/scripts/poky-qemu index c74a16f4a6..6c53b07723 100755 --- a/scripts/poky-qemu +++ b/scripts/poky-qemu @@ -37,7 +37,7 @@ else fi if [ "x$MACHINE" = "x" ]; then - MACHINE=`basename $ZIMAGE | sed -r -e 's#.*-([a-z]+)-?[0-9]*..*#\1#'` + MACHINE=`basename $ZIMAGE | sed -r -e 's#.*-([a-z]+[0-9]*)-?[0-9]*..*#\1#'` fi INTERNAL_SCRIPT=`which poky-qemu-internal`