From: Holger Freyther Date: Tue, 16 May 2006 21:40:52 +0000 (+0000) Subject: conf/bitbake.conf: X-Git-Tag: Release-2010-05/1~9453^2~1692^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=614fae713de4e9804b3a658f54674dba652250a2;p=openembedded.git conf/bitbake.conf: Use -isystem instead of -I for the staging incdir. This will make the staging directory to be the last one in the include chain, this should make all 'local' includes be handled first and only then we will fall back to the staging directory. nice option... --- diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 2043a500eb..bcff586b82 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -239,9 +239,9 @@ EXTRA_OEMAKE = "-e MAKEFLAGS=" # Build flags and options. ################################################################## -export BUILD_CPPFLAGS = "-I${STAGING_DIR}/${BUILD_SYS}/include" +export BUILD_CPPFLAGS = "-isystem${STAGING_DIR}/${BUILD_SYS}/include" export CPPFLAGS = "${TARGET_CPPFLAGS}" -export TARGET_CPPFLAGS = "-I${STAGING_DIR}/${TARGET_SYS}/include" +export TARGET_CPPFLAGS = "-isystem${STAGING_DIR}/${TARGET_SYS}/include" export BUILD_CFLAGS = "${BUILD_CPPFLAGS} ${BUILD_OPTIMIZATION}" export CFLAGS = "${TARGET_CFLAGS}"