diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-20 14:27:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-20 14:27:10 +0000 |
commit | 02e145f5c8b4df95e6c95ef37cc428184f568b17 (patch) | |
tree | 54fa55afb6b63a2f4964f80402688a94dab33ae5 /eclass/libtool.eclass | |
parent | allow uclibctoolize to be bypassed (diff) | |
download | gentoo-2-02e145f5c8b4df95e6c95ef37cc428184f568b17.tar.gz gentoo-2-02e145f5c8b4df95e6c95ef37cc428184f568b17.tar.bz2 gentoo-2-02e145f5c8b4df95e6c95ef37cc428184f568b17.zip |
mmm slightly less ugly bypass
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 b9ea316a433b..a41d03340fa5 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.38 2004/10/20 14:25:02 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.39 2004/10/20 14:27:10 vapier Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -274,7 +274,7 @@ elibtoolize() { } uclibctoolize() { - [ -e "${WORKDIR}/.uclibcpatched" ] && return 0 + [ -n "${NO_UCLIBCTOOLIZE}" ] && return 0 local targets="" local x |