From: Joshua Lock Date: Fri, 16 Sep 2016 09:00:19 +0000 (+0100) Subject: runqemu: clarify an INFO message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb726845f070859d33f2c44bb7d8c3f05cc31556;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git runqemu: clarify an INFO message Make it clearer that we are looking for a file which ends with qemuboot.conf Signed-off-by: Joshua Lock --- diff --git a/scripts/runqemu b/scripts/runqemu index c71a47c7b81..6aaae44ea9f 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -205,7 +205,7 @@ class BaseConfig(object): def is_deploy_dir_image(self, p): if os.path.isdir(p): if not re.search('.qemuboot.conf$', '\n'.join(os.listdir(p)), re.M): - logger.info("Can't find required qemuboot.conf in %s" % p) + logger.info("Can't find required *.qemuboot.conf in %s" % p) return False if not re.search('-image-', '\n'.join(os.listdir(p))): logger.info("Can't find *-image-* in %s" % p)