diff options
author | Yuanjie Huang <yuanjie.huang@windriver.com> | 2015-11-27 17:31:20 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-12 23:31:40 +0000 |
commit | 18a913e54b40a1654d0967290088be5e7fcdd6f6 (patch) | |
tree | 65ba34e75d90cf89d8a847a020afaa2ff1fc17be | |
parent | e67c7f0998a5a285bd079d2c956bd61457e75077 (diff) | |
download | openembedded-core-18a913e54b40a1654d0967290088be5e7fcdd6f6.tar.gz openembedded-core-18a913e54b40a1654d0967290088be5e7fcdd6f6.tar.bz2 openembedded-core-18a913e54b40a1654d0967290088be5e7fcdd6f6.zip |
gcc-cross-initial: make dependency on gnu-config-native and autoconf-native explicit
When a project is configure to use sstate cache and has the host tool sysroot
cleaned, gcc-cross-initial may fail to be configured due to lack of
gnu-configize tool.
gcc-cross-initial recipe has autotools dependency inhibited, and the same flag
variable also excludes the gnu-config-native. Though there is an indirect
dependency through libmpc-native, it's not safe with sstate cache being used.
Moreover, gnu-config-native requires a perl package from autoconf-native to
run, otherwise it will fail with "Can't locate Autom4te/ChannelDefs.pm in @INC"
message.
This patch makes both dependencies explicit for gcc-cross-initial's
configuration.
Signed-off-by: Yuanjie Huang <yuanjie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-initial.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc b/meta/recipes-devtools/gcc/gcc-cross-initial.inc index c0fa139a85..ae92f220a5 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc @@ -5,6 +5,9 @@ PACKAGES = "" INHIBIT_AUTOTOOLS_DEPS = "1" INHIBIT_DEFAULT_DEPS = "1" +# We still need gnu-config-native +DEPENDS_prepend = "gnu-config-native autoconf-native " + PN = "gcc-cross-initial-${TARGET_ARCH}" CROSS_TARGET_SYS_DIR_append = ".${PN}" |