summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-10-06 22:47:57 +0000
committerMike Frysinger <vapier@gentoo.org>2007-10-06 22:47:57 +0000
commit2ff6ae806eb4f21df368b07a529a6476a32ed914 (patch)
tree1f96c31b23290f55605f3d19adbbbcddfac1094c /sys-devel/binutils/binutils-2.18-r1.ebuild
parentstable x86, bug 194820 (diff)
downloadgentoo-2-2ff6ae806eb4f21df368b07a529a6476a32ed914.tar.gz
gentoo-2-2ff6ae806eb4f21df368b07a529a6476a32ed914.tar.bz2
gentoo-2-2ff6ae806eb4f21df368b07a529a6476a32ed914.zip
Prevent makeinfo from being run #193364.
(Portage version: 2.1.3.11)
Diffstat (limited to 'sys-devel/binutils/binutils-2.18-r1.ebuild')
-rw-r--r--sys-devel/binutils/binutils-2.18-r1.ebuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys-devel/binutils/binutils-2.18-r1.ebuild b/sys-devel/binutils/binutils-2.18-r1.ebuild
index 85797b17ad21..2b99ab825540 100644
--- a/sys-devel/binutils/binutils-2.18-r1.ebuild
+++ b/sys-devel/binutils/binutils-2.18-r1.ebuild
@@ -1,9 +1,15 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.18-r1.ebuild,v 1.1 2007/10/06 17:59:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.18-r1.ebuild,v 1.2 2007/10/06 22:47:57 vapier Exp $
PATCHVER="1.3"
ELF2FLT_VER=""
inherit toolchain-binutils
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+
+src_unpack() {
+ toolchain-binutils_src_unpack
+ # disable regeneration of info pages #193364
+ touch "${S}"/bfd/elf.c
+}