eglibc-sourcery: avoid running 'make config'

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
This commit is contained in:
Christopher Larson
2013-03-08 14:21:22 -07:00
parent f62e16eff3
commit 3bfd0a44ec

View File

@@ -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
}