diff options
author | 2006-11-05 12:12:44 +0000 | |
---|---|---|
committer | 2006-11-05 12:12:44 +0000 | |
commit | 13896cef687efb618c2c9c6b5bf5e58be8a7d542 (patch) | |
tree | c99bd1950cd2e4cec219e3c431a9c4382293fc03 /sys-devel/make/make-3.81.ebuild | |
parent | Marking stable on ppc64. (diff) | |
download | gentoo-2-13896cef687efb618c2c9c6b5bf5e58be8a7d542.tar.gz gentoo-2-13896cef687efb618c2c9c6b5bf5e58be8a7d542.tar.bz2 gentoo-2-13896cef687efb618c2c9c6b5bf5e58be8a7d542.zip |
Grab fix from upstream for building in non-english locales #149147 by Ronny Peine.
(Portage version: 2.1.2_rc1-r2)
Diffstat (limited to 'sys-devel/make/make-3.81.ebuild')
-rw-r--r-- | sys-devel/make/make-3.81.ebuild | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys-devel/make/make-3.81.ebuild b/sys-devel/make/make-3.81.ebuild index 09a8e1641d19..8466ab32eb4c 100644 --- a/sys-devel/make/make-3.81.ebuild +++ b/sys-devel/make/make-3.81.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/sys-devel/make/make-3.81.ebuild,v 1.11 2006/10/17 09:35:04 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81.ebuild,v 1.12 2006/11/05 12:12:43 vapier Exp $ inherit flag-o-matic @@ -10,12 +10,18 @@ SRC_URI="mirror://gnu//make/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" IUSE="nls static" DEPEND="nls? ( sys-devel/gettext )" RDEPEND="nls? ( virtual/libintl )" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-tests-lang.patch +} + src_compile() { use static && append-ldflags -static econf \ |