diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-12-10 09:15:14 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-12-10 09:15:14 +0000 |
commit | 457c541f321b6fd6e1c5ec5f52352343a95a1fdb (patch) | |
tree | e576ab25952106032d18e718de052b920e271c57 /dev-dotnet/nant | |
parent | Remove old version. (diff) | |
download | gentoo-2-457c541f321b6fd6e1c5ec5f52352343a95a1fdb.tar.gz gentoo-2-457c541f321b6fd6e1c5ec5f52352343a95a1fdb.tar.bz2 gentoo-2-457c541f321b6fd6e1c5ec5f52352343a95a1fdb.zip |
fix PPC build (bug #120550)
(Portage version: 2.1.2_rc3)
Diffstat (limited to 'dev-dotnet/nant')
-rw-r--r-- | dev-dotnet/nant/ChangeLog | 5 | ||||
-rw-r--r-- | dev-dotnet/nant/nant-0.85.ebuild | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/dev-dotnet/nant/ChangeLog b/dev-dotnet/nant/ChangeLog index b84fa9c3d57c..aa5888793028 100644 --- a/dev-dotnet/nant/ChangeLog +++ b/dev-dotnet/nant/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-dotnet/nant # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.8 2006/12/10 02:38:37 compnerd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.9 2006/12/10 09:15:14 compnerd Exp $ + + 10 Dec 2006; Saleem Abdulrasool <compnerd@gentoo.org> nant-0.85.ebuild: + Add MONO_NO_UNLOAD on ppc to allow it to build (bug #120550) *nant-0.85 (10 Dec 2006) diff --git a/dev-dotnet/nant/nant-0.85.ebuild b/dev-dotnet/nant/nant-0.85.ebuild index ef823345356a..d117651df8c9 100644 --- a/dev-dotnet/nant/nant-0.85.ebuild +++ b/dev-dotnet/nant/nant-0.85.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v 1.1 2006/12/10 02:38:37 compnerd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v 1.2 2006/12/10 09:15:14 compnerd Exp $ inherit mono eutils @@ -34,6 +34,11 @@ src_unpack() { } src_compile() { + # PPC Build Workaround + if [[ ${ARCH} == "ppc" ]] ; then + export MONO_NO_UNLOAD=1 + fi + emake || die } |