From 3bfd0a44ece4ffbd123335a2b2e21a2d6433c48b Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Fri, 8 Mar 2013 14:21:22 -0700 Subject: [PATCH] eglibc-sourcery: avoid running 'make config' Signed-off-by: Christopher Larson --- recipes/eglibc/eglibc-sourcery.bb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/recipes/eglibc/eglibc-sourcery.bb b/recipes/eglibc/eglibc-sourcery.bb index 8616c20..9ca1ca0 100644 --- a/recipes/eglibc/eglibc-sourcery.bb +++ b/recipes/eglibc/eglibc-sourcery.bb @@ -50,6 +50,14 @@ EXTRA_OECONF = "--enable-kernel=${OLDEST_KERNEL} \ EXTRA_OECONF += "${@get_libc_fpu_setting(bb, d)}" +oe_runmake () { + if [ "$1" = "config" ]; then + return + else + ${MAKE} ${EXTRA_OEMAKE} "$@" + fi +} + do_configure () { CPPFLAGS="" oe_runconf }