diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-20 14:25:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-20 14:25:02 +0000 |
commit | 057ce9f75af7922d11c4c6c58cb04a95d54fc6f5 (patch) | |
tree | be64e3597038e4392cbb541eacf61138d45a0726 /eclass/libtool.eclass | |
parent | stable on ia64, bug #66772 (Manifest recommit) (diff) | |
download | gentoo-2-057ce9f75af7922d11c4c6c58cb04a95d54fc6f5.tar.gz gentoo-2-057ce9f75af7922d11c4c6c58cb04a95d54fc6f5.tar.bz2 gentoo-2-057ce9f75af7922d11c4c6c58cb04a95d54fc6f5.zip |
allow uclibctoolize to be bypassed
Diffstat (limited to 'eclass/libtool.eclass')
-rw-r--r-- | eclass/libtool.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index 242ce83ae1b7..b9ea316a433b 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.37 2004/10/19 19:51:12 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.38 2004/10/20 14:25:02 vapier Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -274,6 +274,8 @@ elibtoolize() { } uclibctoolize() { + [ -e "${WORKDIR}/.uclibcpatched" ] && return 0 + local targets="" local x |