diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2016-09-26 09:30:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-28 10:16:03 +0100 |
commit | cf882b6e3abbbc437fc61be58f1265ae3fd4e1b2 (patch) | |
tree | 3d6f504a627efd03af27a072ce8ec6841aa2dcf2 /meta/recipes-devtools/gcc/gcc-cross.inc | |
parent | 2d35edfb5abed33b5b496a95e4535675cb76d6b4 (diff) | |
download | poky-cf882b6e3abbbc437fc61be58f1265ae3fd4e1b2.tar.gz |
SDK: Allow changing SDKMACHINE without wiping TMP folder
When changing SDKMACHINE, we may encounter an error forcing us to wipe the TMP folder.
Since only SDK_ARCH is captured in the PN of the crosssdk recipes, changes to SDK_OS
result in conflicts. Eventually we hit the error:
ERROR: ...: The recipe <...> is trying to install files into a shared area when those files already exist.
The build has stopped as continuing in this scenario WILL break things
This patchset addresses the problem by SDK_SYS as the recipe name suffix instead
of SDK_ARCH.
[YOCTO #9281]
(From OE-Core rev: d2eccccb70e809d482c493922f23aef4409cfd82)
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-cross.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross.inc b/meta/recipes-devtools/gcc/gcc-cross.inc index c0b8751ede..87a8de9a85 100644 --- a/meta/recipes-devtools/gcc/gcc-cross.inc +++ b/meta/recipes-devtools/gcc/gcc-cross.inc | |||
@@ -188,7 +188,7 @@ do_install () { | |||
188 | 188 | ||
189 | # gcc-runtime installs libgcc into a special location in staging since it breaks doing a standalone build | 189 | # gcc-runtime installs libgcc into a special location in staging since it breaks doing a standalone build |
190 | case ${PN} in | 190 | case ${PN} in |
191 | *gcc-cross-${TARGET_ARCH}|*gcc-crosssdk-${TARGET_ARCH}) | 191 | *gcc-cross-${TARGET_ARCH}|*gcc-crosssdk-${SDK_SYS}) |
192 | dest=${D}/${includedir}/gcc-build-internal-${TARGET_SYS} | 192 | dest=${D}/${includedir}/gcc-build-internal-${TARGET_SYS} |
193 | hardlinkdir . $dest | 193 | hardlinkdir . $dest |
194 | ;; | 194 | ;; |