diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-04-09 18:56:59 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-30 11:37:23 +0100 |
commit | 9ce94ea4a45b5aaeecb99c0872862b90b3d78977 (patch) | |
tree | e1e521fe91aa1e2a9d2a7680e7fe3137d821f6f9 /meta/recipes-devtools/gcc/gcc-configure-cross.inc | |
parent | f7337ee8c409761b569dab06e88d530f24b367d5 (diff) | |
download | poky-9ce94ea4a45b5aaeecb99c0872862b90b3d78977.tar.gz |
gcc-configure: Render --with-local-prefix harmless
this option by default points to /usr/local no matter
what so we cant let it sit on sidelines otherwise it
will access host machine's /usr/local which may not
be desired. So disable this option. This also helps in making
gcc's shared state more consistent
(From OE-Core rev: eee3658366e1ae9d3e429b3d3c968938d8d0f00e)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-configure-cross.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-configure-cross.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-configure-cross.inc b/meta/recipes-devtools/gcc/gcc-configure-cross.inc index 98961923ba..65e340a0d7 100644 --- a/meta/recipes-devtools/gcc/gcc-configure-cross.inc +++ b/meta/recipes-devtools/gcc/gcc-configure-cross.inc | |||
@@ -8,7 +8,7 @@ EXTRA_OECONF += " --enable-poison-system-directories \ | |||
8 | 8 | ||
9 | INHIBIT_DEFAULT_DEPS = "1" | 9 | INHIBIT_DEFAULT_DEPS = "1" |
10 | 10 | ||
11 | EXTRA_OECONF_PATHS = "--with-local-prefix=${STAGING_DIR_TARGET}${target_exec_prefix} \ | 11 | EXTRA_OECONF_PATHS = " \ |
12 | --with-gxx-include-dir=${STAGING_DIR_TARGET}${target_includedir}/c++ \ | 12 | --with-gxx-include-dir=${STAGING_DIR_TARGET}${target_includedir}/c++ \ |
13 | --with-sysroot=${STAGING_DIR_TARGET} \ | 13 | --with-sysroot=${STAGING_DIR_TARGET} \ |
14 | --with-build-sysroot=${STAGING_DIR_TARGET}" | 14 | --with-build-sysroot=${STAGING_DIR_TARGET}" |