diff options
author | Roy Marples <uberlord@gentoo.org> | 2007-09-14 11:38:01 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2007-09-14 11:38:01 +0000 |
commit | 072d8db22e3c826fe39a6507edca8899fae82115 (patch) | |
tree | f3bdecc88e42b4b4b9b5a95c01d72b7860462a19 /eclass/libtool.eclass | |
parent | Add ELT patches so that old install-sh files stand a better chance of working... (diff) | |
download | historical-072d8db22e3c826fe39a6507edca8899fae82115.tar.gz historical-072d8db22e3c826fe39a6507edca8899fae82115.tar.bz2 historical-072d8db22e3c826fe39a6507edca8899fae82115.zip |
Apply install-sh patches
Diffstat (limited to 'eclass/libtool.eclass')
-rw-r--r-- | eclass/libtool.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index e094b3777564..8ff467e7d5db 100644 --- a/eclass/libtool.eclass +++ b/eclass/libtool.eclass @@ -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/eclass/libtool.eclass,v 1.77 2007/09/14 06:49:45 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.78 2007/09/14 11:38:01 uberlord Exp $ # # Maintainer: base-system@gentoo.org # @@ -122,7 +122,7 @@ elibtoolize() { local do_uclibc="yes" local deptoremove= local my_dirlist= - local elt_patches="ltmain portage relink max_cmd_len sed test tmp" + local elt_patches="install-sh ltmain portage relink max_cmd_len sed test tmp" local start_dir=${PWD} my_dirlist=$(ELT_find_ltmain_sh) @@ -261,6 +261,10 @@ elibtoolize() { ret=$? fi ;; + "install-sh") + ELT_walk_patches "${x}/install-sh" "${y}" + ret=$? + ;; *) ELT_walk_patches "${x}/ltmain.sh" "${y}" ret=$? |