diff options
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/Manifest.gz | bin | 38876 -> 38875 bytes | |||
-rw-r--r-- | eclass/toolchain.eclass | 6 |
2 files changed, 3 insertions, 3 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz Binary files differindex b6e50cd65476..58aec2669f8b 100644 --- a/eclass/Manifest.gz +++ b/eclass/Manifest.gz diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index aa7134b23e8e..b25c5dcf0929 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2980,10 +2980,10 @@ toolchain_death_notice() { for dir in "${WORKDIR}"/build-jit "${WORKDIR}"/build ; do if [[ -e "${dir}" ]] ; then pushd "${WORKDIR}" >/dev/null - (echo '' | $(tc-getCC ${CTARGET}) ${CFLAGS} -v -E - 2>&1) > gccinfo.log - [[ -e "${T}"/build.log ]] && cp "${T}"/build.log . + (echo '' | $(tc-getCC ${CTARGET}) ${CFLAGS} -v -E - 2>&1) > "${dir}"/gccinfo.log + [[ -e "${T}"/build.log ]] && cp "${T}"/build.log "${dir}" tar -arf "${WORKDIR}"/gcc-build-logs.tar.xz \ - "${dir}"/gccinfo.log "${dir}"/build.log $(find -name "${dir}"/config.log) + "${dir#${WORKDIR}/}"/gccinfo.log "${dir#${WORKDIR}/}"/build.log $(find -name "${dir}"/config.log) rm "${dir}"/gccinfo.log "${dir}"/build.log eerror eerror "Please include ${WORKDIR}/gcc-build-logs.tar.xz in your bug report." |