diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-11-11 19:55:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-11-11 19:55:42 +0000 |
commit | df0b4740f6f11c266a8f22fc48717446e675077e (patch) | |
tree | d572a7bb9f95be610e7de2c5f5587e1b3d67467f /eclass/toolchain-binutils.eclass | |
parent | Added a minor fix for the desktop file as per bug 190006. Thanks to gentoofan... (diff) | |
download | gentoo-2-df0b4740f6f11c266a8f22fc48717446e675077e.tar.gz gentoo-2-df0b4740f6f11c266a8f22fc48717446e675077e.tar.bz2 gentoo-2-df0b4740f6f11c266a8f22fc48717446e675077e.zip |
make sure info pages dont get regenerated in releases #193364
Diffstat (limited to 'eclass/toolchain-binutils.eclass')
-rw-r--r-- | eclass/toolchain-binutils.eclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index 4af9df13f5c8..317438266cf6 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.76 2007/07/23 16:32:13 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.77 2007/11/11 19:55:42 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> # @@ -179,6 +179,12 @@ toolchain-binutils_src_unpack() { } toolchain-binutils_src_compile() { + # prevent makeinfo from running in releases. it may not always be + # installed, and older binutils may fail with newer texinfo. + # besides, we never patch the doc files anyways, so regenerating + # in the first place is useless. #193364 + find . '(' -name '*.info' -o -name '*.texi' ')' -print0 | xargs -0 touch -r . + # make sure we filter $LINGUAS so that only ones that # actually work make it through #42033 strip-linguas -u */po |