diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-10-11 10:04:22 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-10-11 10:04:22 +0000 |
commit | 7f02408e6638b03f867b578a0945b6380843e415 (patch) | |
tree | 62de95e00c91b65b472f1bc1e5ab41ac9b9b4ce0 /sci-mathematics/coq | |
parent | Restore Changelog - I suck (diff) | |
download | gentoo-2-7f02408e6638b03f867b578a0945b6380843e415.tar.gz gentoo-2-7f02408e6638b03f867b578a0945b6380843e415.tar.bz2 gentoo-2-7f02408e6638b03f867b578a0945b6380843e415.zip |
fix configure call when ide and norealanalysis useflags are set, bug #195483
(Portage version: 2.1.3.12)
Diffstat (limited to 'sci-mathematics/coq')
-rw-r--r-- | sci-mathematics/coq/ChangeLog | 5 | ||||
-rw-r--r-- | sci-mathematics/coq/coq-8.1_p1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sci-mathematics/coq/ChangeLog b/sci-mathematics/coq/ChangeLog index 89bb2393ebdc..794656d1d3be 100644 --- a/sci-mathematics/coq/ChangeLog +++ b/sci-mathematics/coq/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/coq # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/coq/ChangeLog,v 1.16 2007/09/29 15:40:34 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/coq/ChangeLog,v 1.17 2007/10/11 10:04:22 aballier Exp $ + + 11 Oct 2007; Alexis Ballier <aballier@gentoo.org> coq-8.1_p1.ebuild: + fix configure call when ide and norealanalysis useflags are set, bug #195483 *coq-8.1_p1 (29 Sep 2007) diff --git a/sci-mathematics/coq/coq-8.1_p1.ebuild b/sci-mathematics/coq/coq-8.1_p1.ebuild index 9b9be5148387..d435f21898d6 100644 --- a/sci-mathematics/coq/coq-8.1_p1.ebuild +++ b/sci-mathematics/coq/coq-8.1_p1.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/sci-mathematics/coq/coq-8.1_p1.ebuild,v 1.1 2007/09/29 15:40:34 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/coq/coq-8.1_p1.ebuild,v 1.2 2007/10/11 10:04:22 aballier Exp $ inherit eutils @@ -33,7 +33,7 @@ src_compile() { --coqdocdir /usr/lib/coq/coqdoc" use debug && myconf="--debug $myconf" - use norealanalysis && myconf="$myconf --reals" + use norealanalysis && myconf="$myconf --reals no" use norealanalysis || myconf="$myconf --reals all" if use ide; then |