diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-09-29 03:49:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-09-29 03:49:59 +0000 |
commit | 1b3147e6049874803d7cb3cca7155857d479dbd8 (patch) | |
tree | 49d39415e56e48b2239a1b311be0403cb4812352 | |
parent | Fixes collision with existing history(3) manpage on ppc-macos. (diff) | |
download | historical-1b3147e6049874803d7cb3cca7155857d479dbd8.tar.gz historical-1b3147e6049874803d7cb3cca7155857d479dbd8.tar.bz2 historical-1b3147e6049874803d7cb3cca7155857d479dbd8.zip |
dont try to patch ltconfig if size == 0 bytes #65331
-rw-r--r-- | eclass/libtool.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index 433667c4a74f..7cf56cf97e15 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.34 2004/09/25 19:59:51 rac Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.35 2004/09/29 03:49:59 vapier Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -278,6 +278,7 @@ uclibctoolize() { einfo "Applying uClibc/libtool patches ..." for x in ${targets} ; do + [ ! -s "${x}" ] && continue case $(basename "${x}") in configure) if grep 'Transform linux' "${x}" >/dev/null ; then |