From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JSk1M-0004LY-CJ for garchives@archives.gentoo.org; Sat, 23 Feb 2008 02:21:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F232E079B; Sat, 23 Feb 2008 02:21:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 32312E079B for ; Sat, 23 Feb 2008 02:21:47 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id E6D2B65101 for ; Sat, 23 Feb 2008 02:21:23 +0000 (UTC) Received: from vapier by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JSk0w-0001H8-7F for gentoo-commits@lists.gentoo.org; Sat, 23 Feb 2008 02:21:22 +0000 From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: autotools.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: autotools.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: Sender: Mike Frysinger Date: Sat, 23 Feb 2008 02:21:22 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 11b5626f-b964-42a2-9266-a2ded5850512 X-Archives-Hash: 4dd42f1a599919cd7911039bdbac195f vapier 08/02/23 02:21:22 Modified: autotools.eclass Log: newer libtool versions have an --install flag for copying/updating help= er files Revision Changes Path 1.72 eclass/autotools.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.e= class?rev=3D1.72&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.e= class?rev=3D1.72&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.e= class?r1=3D1.71&r2=3D1.72 Index: autotools.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v retrieving revision 1.71 retrieving revision 1.72 diff -u -r1.71 -r1.72 --- autotools.eclass 25 Jan 2008 22:45:23 -0000 1.71 +++ autotools.eclass 23 Feb 2008 02:21:21 -0000 1.72 @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.71 2008/0= 1/25 22:45:23 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.72 2008/0= 2/23 02:21:21 vapier Exp $ # # Maintainer: base-system@gentoo.org # @@ -92,7 +92,11 @@ einfo "Running eautoreconf in '$(pwd)' ..." [[ -n ${auxdir} ]] && mkdir -p ${auxdir} eaclocal - _elibtoolize --copy --force + if ${LIBTOOLIZE:-libtoolize} -n --install >& /dev/null ; then + _elibtoolize --copy --force --install + else + _elibtoolize --copy --force + fi eautoconf eautoheader FROM_EAUTORECONF=3D"yes" eautomake ${AM_OPTS} --=20 gentoo-commits@lists.gentoo.org mailing list