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 | 39e04abf5aab83fec10d6dfb95790f701cb8f6d3 (patch) | |
tree | 591cc3b1a4f4773429b75554de37551d99dc84af /dev-lang/ghc | |
parent | hfsplus patch updated (diff) | |
download | historical-39e04abf5aab83fec10d6dfb95790f701cb8f6d3.tar.gz historical-39e04abf5aab83fec10d6dfb95790f701cb8f6d3.tar.bz2 historical-39e04abf5aab83fec10d6dfb95790f701cb8f6d3.zip |
fixed bug #40128
Diffstat (limited to 'dev-lang/ghc')
-rw-r--r-- | dev-lang/ghc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/ghc/Manifest | 4 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.2.ebuild | 9 |
3 files changed, 13 insertions, 5 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/Manifest b/dev-lang/ghc/Manifest index 4bf83f41d29a..c63862253133 100644 --- a/dev-lang/ghc/Manifest +++ b/dev-lang/ghc/Manifest @@ -1,8 +1,8 @@ MD5 e95779532f1a701a9f0a29bab9447ead ghc-5.04.3-r1.ebuild 7402 MD5 e6cb655b6e491861cde72bf8695c53eb ghc-6.0.ebuild 4282 -MD5 4232142fe5db54674f3ea62b51cdbd8e ghc-6.2.ebuild 4867 +MD5 802669d9b27965494cb6b7e4d8cece09 ghc-6.2.ebuild 5065 MD5 eb902d291c43516728dc3b4e00834029 ghc-6.0.1.ebuild 4878 -MD5 36e3a4183c2a1ea723ed4bf2ce2e894b ChangeLog 6109 +MD5 67d53cfa8dfbe716719a583732a73987 ChangeLog 6244 MD5 a769ecfcd1cdd2d40986627df7dfb249 metadata.xml 224 MD5 9da9270be8ac4d92d6a5c23fd519cc3c files/lndir.c 8050 MD5 9c184505ec441675c94d47a3110fa754 files/ghc-6.2.documentation.patch 721 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 \ |