From: Ross Burton Date: Fri, 13 Jul 2012 11:01:27 +0000 (+0100) Subject: base.bbclass: add GNUmakefile to the list of possible makefile names X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~40842 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b753eab1028ba48dfdcdeefa07f3f30743f3ee45;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git base.bbclass: add GNUmakefile to the list of possible makefile names Signed-off-by: Ross Burton Signed-off-by: Saul Wold --- diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 08065c669e7..f69179943b3 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -280,7 +280,7 @@ base_do_configure() { addtask compile after do_configure do_compile[dirs] = "${S} ${B}" base_do_compile() { - if [ -e Makefile -o -e makefile ]; then + if [ -e Makefile -o -e makefile -o -e GNUmakefile ]; then oe_runmake || die "make failed" else bbnote "nothing to compile"