summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorRyan Hill <rhill@gentoo.org>2013-11-09 07:49:50 +0000
committerRyan Hill <rhill@gentoo.org>2013-11-09 07:49:50 +0000
commit82ddf973dc275fde32c2922b883c16d8db2862d0 (patch)
treee1d2f1224c5ba53ae50fa4e1d5b2c17898589059 /eclass
parentVersion bump to 1.9.3. (diff)
downloadhistorical-82ddf973dc275fde32c2922b883c16d8db2862d0.tar.gz
historical-82ddf973dc275fde32c2922b883c16d8db2862d0.tar.bz2
historical-82ddf973dc275fde32c2922b883c16d8db2862d0.zip
Rename config.log tarball in the hope that people will stop attaching it to
build failures.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog6
-rw-r--r--eclass/toolchain.eclass7
2 files changed, 9 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index f8a10f62b79f..8998664dbeed 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for eclass directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1050 2013/11/07 03:19:30 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1051 2013/11/09 07:49:50 dirtyepic Exp $
+
+ 09 Nov 2013; Ryan Hill <dirtyepic@gentoo.org> toolchain.eclass:
+ Rename config.log tarball in the hope that people will stop attaching it to
+ build failures.
07 Nov 2013; Ryan Hill <dirtyepic@gentoo.org> toolchain.eclass:
Temporarily build with -j1 on sparc due to random ICEs encountered by
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 84c5cb37151f..270bb97cb480 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.603 2013/11/07 03:19:00 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.604 2013/11/09 07:49:50 dirtyepic Exp $
# Maintainer: Toolchain Ninjas <toolchain@gentoo.org>
@@ -1285,9 +1285,10 @@ gcc_do_configure() {
has toolchain_death_notice ${EBUILD_DEATH_HOOKS} || EBUILD_DEATH_HOOKS+=" toolchain_death_notice"
toolchain_death_notice() {
pushd "${WORKDIR}"/build >/dev/null
- tar jcf gcc-build-logs.tar.bz2 $(find -name config.log)
+ tar jcf gcc-config-logs.tar.bz2 $(find -name config.log)
eerror
- eerror "Please include ${PWD}/gcc-build-logs.tar.bz2 in your bug report"
+ eerror "Please include ${PWD}/gcc-config-logs.tar.bz2"
+ eerror "in your bug report if the error occurred during configure."
eerror
popd >/dev/null
}