From: Holger Freyther Date: Sun, 6 Jan 2008 23:03:37 +0000 (+0000) Subject: classes/sanity.bbclass: We need GNU fortran installed to build the gcc4.2 cross compiler X-Git-Tag: Release-2010-05/1~8002^2~3 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7bc13c6bdeb14a3e44b1e799d84f77be35dd463;p=openembedded.git classes/sanity.bbclass: We need GNU fortran installed to build the gcc4.2 cross compiler --- diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass index 9994febf0d..fb2d058610 100644 --- a/classes/sanity.bbclass +++ b/classes/sanity.bbclass @@ -83,6 +83,9 @@ def check_sanity(e): if not check_app_exists('${BUILD_PREFIX}g++', e.data): missing = missing + "C++ Compiler (${BUILD_PREFIX}g++)," + if not check_app_exists('${BUILD_PREFIX}gfortran', e.data): + missing = mising + "GNU Fortran Compiler" + required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk md5sum" for util in required_utilities.split():