aboutsummaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.ne>2006-09-17 21:32:42 +0000
committerFelix Domke <tmbinc@elitedvb.ne>2006-09-17 21:32:42 +0000
commitb3ec36c50ad903a3c6a65ee12f4953f0182a96fd (patch)
tree0e4f45b4fb26e52ae4a45921ea8b23e7edf2062e /conf
parenteb474b304b55875141af773803f24840a5b4a2bd (diff)
downloadopenembedded-b3ec36c50ad903a3c6a65ee12f4953f0182a96fd.tar.gz
conf/bitbake.conf: replace -isystem with -I to work around unknown host toolchain problem
Diffstat (limited to 'conf')
-rw-r--r--conf/bitbake.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf
index e83f2b5667..0e3c7d3f3b 100644
--- a/conf/bitbake.conf
+++ b/conf/bitbake.conf
@@ -249,9 +249,9 @@ PATCHRESOLVE = 'user'
# Build flags and options.
##################################################################
-export BUILD_CPPFLAGS = "-isystem${STAGING_DIR}/${BUILD_SYS}/include"
+export BUILD_CPPFLAGS = "-I ${STAGING_DIR}/${BUILD_SYS}/include"
export CPPFLAGS = "${TARGET_CPPFLAGS}"
-export TARGET_CPPFLAGS = "-isystem${STAGING_DIR}/${TARGET_SYS}/include"
+export TARGET_CPPFLAGS = "-I ${STAGING_DIR}/${TARGET_SYS}/include"
export BUILD_CFLAGS = "${BUILD_CPPFLAGS} ${BUILD_OPTIMIZATION}"
export CFLAGS = "${TARGET_CFLAGS}"