diff options
author | Scott W Taylor <swtaylor@gentoo.org> | 2005-01-22 09:41:13 +0000 |
---|---|---|
committer | Scott W Taylor <swtaylor@gentoo.org> | 2005-01-22 09:41:13 +0000 |
commit | b6acbe923e89668411a87b662eedbd40f0c889f9 (patch) | |
tree | 47ba0b496c7db92812feaa09134e85fd0c08ca43 /dev-libs/pth | |
parent | version bump (diff) | |
download | gentoo-2-b6acbe923e89668411a87b662eedbd40f0c889f9.tar.gz gentoo-2-b6acbe923e89668411a87b662eedbd40f0c889f9.tar.bz2 gentoo-2-b6acbe923e89668411a87b662eedbd40f0c889f9.zip |
fix for awk locale behavior. closes #78749
(Portage version: 2.0.51-r14)
Diffstat (limited to 'dev-libs/pth')
-rw-r--r-- | dev-libs/pth/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/pth/pth-1.4.0.ebuild | 4 | ||||
-rw-r--r-- | dev-libs/pth/pth-1.4.1.ebuild | 4 | ||||
-rw-r--r-- | dev-libs/pth/pth-2.0.3.ebuild | 8 |
4 files changed, 12 insertions, 9 deletions
diff --git a/dev-libs/pth/ChangeLog b/dev-libs/pth/ChangeLog index de5983b9888a..23a951bd9449 100644 --- a/dev-libs/pth/ChangeLog +++ b/dev-libs/pth/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/pth # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.24 2005/01/19 20:52:58 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.25 2005/01/22 09:41:13 swtaylor Exp $ + + 22 Jan 2005; Scott W Taylor <swtaylor@gentoo.org> pth-2.0.3.ebuild: + pth_p.h was being built wrong from other locales. closes bug 78749 *pth-2.0.3 (20 Jan 2005) diff --git a/dev-libs/pth/pth-1.4.0.ebuild b/dev-libs/pth/pth-1.4.0.ebuild index 32041faa4450..b20517c50259 100644 --- a/dev-libs/pth/pth-1.4.0.ebuild +++ b/dev-libs/pth/pth-1.4.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.0.ebuild,v 1.21 2004/12/20 19:32:26 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.0.ebuild,v 1.22 2005/01/22 09:41:13 swtaylor Exp $ inherit gnuconfig libtool diff --git a/dev-libs/pth/pth-1.4.1.ebuild b/dev-libs/pth/pth-1.4.1.ebuild index 8c5759c95909..90536e7362a1 100644 --- a/dev-libs/pth/pth-1.4.1.ebuild +++ b/dev-libs/pth/pth-1.4.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.1.ebuild,v 1.19 2004/12/20 19:32:26 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.1.ebuild,v 1.20 2005/01/22 09:41:13 swtaylor Exp $ inherit gnuconfig diff --git a/dev-libs/pth/pth-2.0.3.ebuild b/dev-libs/pth/pth-2.0.3.ebuild index b23ddd057e19..d4c6428353e6 100644 --- a/dev-libs/pth/pth-2.0.3.ebuild +++ b/dev-libs/pth/pth-2.0.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-2.0.3.ebuild,v 1.1 2005/01/19 20:52:58 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-2.0.3.ebuild,v 1.2 2005/01/22 09:41:13 swtaylor Exp $ inherit fixheadtails @@ -22,8 +22,8 @@ src_unpack() { src_compile() { econf || die "econf failed" - # note - needed so parallel compile works - emake pth_p.h || die "pth_p.h make failed" + # note - needed so parallel compile works. also needs built with standard locale + LANG=C emake pth_p.h || die "pth_p.h make failed" emake || die "emake failed" } |