diff options
author | Andres Loeh <kosmikus@gentoo.org> | 2004-02-20 13:10:56 +0000 |
---|---|---|
committer | Andres Loeh <kosmikus@gentoo.org> | 2004-02-20 13:10:56 +0000 |
commit | e2407cbcf1efce468e54efcfeb2a5702c7a6ab77 (patch) | |
tree | 05d21450119ae6ceeb4320eeabd3b03435cfed68 /dev-lang/ghc | |
parent | hfsplus patch updated (Manifest recommit) (diff) | |
download | gentoo-2-e2407cbcf1efce468e54efcfeb2a5702c7a6ab77.tar.gz gentoo-2-e2407cbcf1efce468e54efcfeb2a5702c7a6ab77.tar.bz2 gentoo-2-e2407cbcf1efce468e54efcfeb2a5702c7a6ab77.zip |
fixed bug #40128
Diffstat (limited to 'dev-lang/ghc')
-rw-r--r-- | dev-lang/ghc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.2.ebuild | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-lang/ghc/ChangeLog b/dev-lang/ghc/ChangeLog index 70d0f1924565..cb4fab9ff46e 100644 --- a/dev-lang/ghc/ChangeLog +++ b/dev-lang/ghc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/ghc # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.26 2004/01/11 21:26:11 kosmikus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.27 2004/02/20 13:10:56 kosmikus Exp $ + + 20 Feb 2004; Andres Loeh <kosmikus@gentoo.org> ghc-6.2.ebuild: + Fixed a problem building libraries using recent binutils (#40128). 11 Jan 2004; Andres Loeh <kosmikus@gentoo.org> ghc-5.04.3-r1.ebuild: moved setup checks to pkg_setup (bug #33962). diff --git a/dev-lang/ghc/ghc-6.2.ebuild b/dev-lang/ghc/ghc-6.2.ebuild index 154fac09eb83..e3fff2c14d2e 100644 --- a/dev-lang/ghc/ghc-6.2.ebuild +++ b/dev-lang/ghc/ghc-6.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.2.ebuild,v 1.3 2003/12/22 09:15:50 kosmikus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.2.ebuild,v 1.4 2004/02/20 13:10:56 kosmikus Exp $ #Some explanation of bootstrap logic: # @@ -91,6 +91,11 @@ src_compile() { echo "SRC_HC_OPTS+=-optc-yet_exec -optc-yno_propolice" >> mk/build.mk fi + # force the config variable ArSupportsInput to be unset; + # ar in binutils >= 2.14.90.0.8-r1 seems to be classified + # incorrectly by the configure script + echo "ArSupportsInput:=" >> mk/build.mk + # unset SGML_CATALOG_FILES because documentation installation # breaks otherwise ... PATH="${GHCPATH}" SGML_CATALOG_FILES="" econf \ |