From: Richard Purdie Date: Sat, 19 May 2007 23:03:37 +0000 (+0000) Subject: native.bbclass: Unset CONFIG_SITE since we shouldn't be using site files for native... X-Git-Tag: Release-2010-05/1~8868^2~424 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9375e3001c13e0ebe5290a024dc7c61d6696d4f6;p=openembedded.git native.bbclass: Unset CONFIG_SITE since we shouldn't be using site files for native builds --- diff --git a/classes/native.bbclass b/classes/native.bbclass index 556c0e17e2..43000f96bf 100644 --- a/classes/native.bbclass +++ b/classes/native.bbclass @@ -39,6 +39,9 @@ LDFLAGS_build-darwin = "-L${STAGING_DIR}/${BUILD_SYS}/lib " STAGING_BINDIR = "${STAGING_BINDIR_NATIVE}" STAGING_BINDIR_CROSS = "${STAGING_BINDIR_NATIVE}" +# Don't use site files for native builds +export CONFIG_SITE = "" + # set the compiler as well. It could have been set to something else export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}" export CXX = "${CCACHE}${HOST_PREFIX}g++ ${HOST_CC_ARCH}"