summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJurek Bartuszek <jurek@gentoo.org>2007-05-29 19:36:04 +0000
committerJurek Bartuszek <jurek@gentoo.org>2007-05-29 19:36:04 +0000
commit999095efb4e510de0df324ede092e46bb3e045fe (patch)
tree9bdf514ffde82795574fbf9eb9ac2f3096855e8d /dev-lang/mono
parentStable on sparc wrt #180120 (diff)
downloadgentoo-2-999095efb4e510de0df324ede092e46bb3e045fe.tar.gz
gentoo-2-999095efb4e510de0df324ede092e46bb3e045fe.tar.bz2
gentoo-2-999095efb4e510de0df324ede092e46bb3e045fe.zip
dev-lang/mono-1.2.4: Fixed typo (bug #180192)
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-lang/mono')
-rw-r--r--dev-lang/mono/ChangeLog8
-rw-r--r--dev-lang/mono/mono-1.2.4.ebuild6
2 files changed, 10 insertions, 4 deletions
diff --git a/dev-lang/mono/ChangeLog b/dev-lang/mono/ChangeLog
index f20a8f4d285a..917ae17c845f 100644
--- a/dev-lang/mono/ChangeLog
+++ b/dev-lang/mono/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-lang/mono
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.112 2007/05/17 17:37:39 compnerd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/ChangeLog,v 1.113 2007/05/29 19:36:04 jurek Exp $
+
+ 29 May 2007; Jurek Bartuszek <jurek@gentoo.org> mono-1.2.4.ebuild:
+ Fixed typo (bug #180192)
+
+ 17 May 2007; Jurek Bartuszek <jurek@gentoo.org> mono-1.2.4.ebuild:
+ Adding -j1 to emake in 1.2.4 (fixing bug #178820).
17 May 2007; Saleem Abdulrasool <compnerd@gentoo.org> mono-1.2.4.ebuild:
Apparently the build was a fluke, still parallel build unfriendly
diff --git a/dev-lang/mono/mono-1.2.4.ebuild b/dev-lang/mono/mono-1.2.4.ebuild
index d5f346a70c87..8a98140bf5be 100644
--- a/dev-lang/mono/mono-1.2.4.ebuild
+++ b/dev-lang/mono/mono-1.2.4.ebuild
@@ -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/dev-lang/mono/mono-1.2.4.ebuild,v 1.2 2007/05/17 17:37:39 compnerd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-1.2.4.ebuild,v 1.3 2007/05/29 19:36:04 jurek Exp $
inherit eutils flag-o-matic multilib autotools
@@ -71,7 +71,7 @@ src_compile() {
# force __thread on amd64 (bug #83770)
myconf="${myconf} --with-tls=__thread"
else
- myconf="${myconf} --wiht-tls=pthread"
+ myconf="${myconf} --with-tls=pthread"
fi
# Enable large heaps if memory is more than >=3GB
@@ -83,7 +83,7 @@ src_compile() {
touch ${S}/mcs/build/deps/use-monolite
econf ${myconf} || die "configure failed"
- emake || die "compile failed"
+ emake -j1 || die "compile failed"
}
src_install() {