diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-04-23 16:27:19 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-04-23 16:27:19 +0000 |
commit | 051a05131993e81a088ceaa32823ce7c2eba7fbe (patch) | |
tree | b7bd7e033bf92858db04a7d38bfeed6aa5a06894 /eclass/libtool.eclass | |
parent | Stable on ppc. (diff) | |
download | gentoo-2-051a05131993e81a088ceaa32823ce7c2eba7fbe.tar.gz gentoo-2-051a05131993e81a088ceaa32823ce7c2eba7fbe.tar.bz2 gentoo-2-051a05131993e81a088ceaa32823ce7c2eba7fbe.zip |
Add patch to fix kde's fast-install support in libtool, to fix problems reported by truedfx and others.
Diffstat (limited to 'eclass/libtool.eclass')
-rw-r--r-- | eclass/libtool.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index cafbcd6b491f..6f8e5a2cef31 100644 --- a/eclass/libtool.eclass +++ b/eclass/libtool.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.68 2006/04/08 00:46:22 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.69 2006/04/23 16:27:19 flameeyes Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -127,7 +127,7 @@ elibtoolize() { local do_uclibc="yes" local deptoremove= local my_dirlist= - local elt_patches="portage relink max_cmd_len sed test tmp" + local elt_patches="portage relink max_cmd_len sed test tmp kde-fastinstall" local start_dir=${PWD} my_dirlist=$(ELT_find_ltmain_sh) @@ -335,6 +335,11 @@ elibtoolize() { useq ppc-macos && \ ewarn " Darwin patch set '${y}' failed to apply!" ;; + "kde-fastinstall") + if [[ -n $(grep 'test "$mode" != relink && test "$fast_install" = no' ${x}/ltmain.sh) ]]; then + ewarn "Patch ${y} failed to apply. If you experience build failures, please report this." + fi + ;; esac fi done |