diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-09-25 06:35:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-09-25 06:35:09 +0000 |
commit | 7aae997ff9e31c0765d7af39a4dd895d7fa2fe50 (patch) | |
tree | 81e1b99eae614b842a6c0e37938273111e09d475 /eclass/libtool.eclass | |
parent | old (diff) | |
download | historical-7aae997ff9e31c0765d7af39a4dd895d7fa2fe50.tar.gz historical-7aae997ff9e31c0765d7af39a4dd895d7fa2fe50.tar.bz2 historical-7aae997ff9e31c0765d7af39a4dd895d7fa2fe50.zip |
forgot to add the extra search param in uclibctoolize
Diffstat (limited to 'eclass/libtool.eclass')
-rw-r--r-- | eclass/libtool.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index 0a2a511fcd89..dd4c55bbd04e 100644 --- a/eclass/libtool.eclass +++ b/eclass/libtool.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.31 2004/09/22 20:04:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.32 2004/09/25 06:35:09 vapier Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -265,7 +265,7 @@ uclibctoolize() { local x if [ -z "$@" ] ; then - targets="$(find ${S} -name configure)" + targets="$(find ${S} -name configure -o -name ltconfig)" fi einfo "Applying uClibc/libtool patches ..." |