summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-01-02 18:06:54 +0000
committerMike Frysinger <vapier@gentoo.org>2014-01-02 18:06:54 +0000
commit414fd26ee8bf0037b80581d798eba934fe4ac30a (patch)
treed38c6e72d4a0da4d323ab50d9f778caab7e20f8e /app-text
parentUse -delete with find rather than -exec rm. (diff)
downloadgentoo-2-414fd26ee8bf0037b80581d798eba934fe4ac30a.tar.gz
gentoo-2-414fd26ee8bf0037b80581d798eba934fe4ac30a.tar.bz2
gentoo-2-414fd26ee8bf0037b80581d798eba934fe4ac30a.zip
Fix random parallel install errors when relinking #438026 by Nathan Phillip Brink.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/aspell/ChangeLog6
-rw-r--r--app-text/aspell/aspell-0.60.6.1.ebuild8
2 files changed, 12 insertions, 2 deletions
diff --git a/app-text/aspell/ChangeLog b/app-text/aspell/ChangeLog
index 8c373f42fb45..5c9bbebc34f2 100644
--- a/app-text/aspell/ChangeLog
+++ b/app-text/aspell/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/aspell
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/ChangeLog,v 1.142 2014/01/02 18:06:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/ChangeLog,v 1.143 2014/01/02 18:06:54 vapier Exp $
+
+ 02 Jan 2014; Mike Frysinger <vapier@gentoo.org> aspell-0.60.6.1.ebuild:
+ Fix random parallel install errors when relinking #438026 by Nathan Phillip
+ Brink.
02 Jan 2014; Mike Frysinger <vapier@gentoo.org> aspell-0.60.6.1.ebuild:
Use -delete with find rather than -exec rm.
diff --git a/app-text/aspell/aspell-0.60.6.1.ebuild b/app-text/aspell/aspell-0.60.6.1.ebuild
index 6c994c822d74..48db9c7672b7 100644
--- a/app-text/aspell/aspell-0.60.6.1.ebuild
+++ b/app-text/aspell/aspell-0.60.6.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/aspell-0.60.6.1.ebuild,v 1.10 2014/01/02 18:06:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/aspell-0.60.6.1.ebuild,v 1.11 2014/01/02 18:06:54 vapier Exp $
EAPI=4
@@ -52,6 +52,12 @@ src_prepare() {
rm m4/lt* m4/libtool.m4
eautoreconf
elibtoolize --reverse-deps
+
+ # Parallel install of libtool libraries doesn't always work.
+ # https://lists.gnu.org/archive/html/libtool/2011-03/msg00003.html
+ # This has to be after automake has run so that we don't clobber
+ # the default target that automake creates for us.
+ echo 'install-filterLTLIBRARIES: install-libLTLIBRARIES' >> Makefile.in
}
src_configure() {