]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: add GNUmakefile to the list of possible makefile names
authorRoss Burton <ross.burton@intel.com>
Fri, 13 Jul 2012 11:01:27 +0000 (12:01 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 17 Jul 2012 09:23:15 +0000 (10:23 +0100)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/classes/base.bbclass

index 08065c669e7eea0bda33ed3cec3bd694a43ec964..f69179943b308f5001cae222ebd82dca65cb6eff 100644 (file)
@@ -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"