diff options
author | Michael Sterrett <msterret@gentoo.org> | 2003-07-22 00:49:32 +0000 |
---|---|---|
committer | Michael Sterrett <msterret@gentoo.org> | 2003-07-22 00:49:32 +0000 |
commit | 705dd90558131b02fb8e4cd0200326ccddc0e3a4 (patch) | |
tree | 9e0ab70185c77dea3410cecf17bbff33ad459798 | |
parent | use newdepend instead of DEPEND= (diff) | |
download | gentoo-2-705dd90558131b02fb8e4cd0200326ccddc0e3a4.tar.gz gentoo-2-705dd90558131b02fb8e4cd0200326ccddc0e3a4.tar.bz2 gentoo-2-705dd90558131b02fb8e4cd0200326ccddc0e3a4.zip |
use newdepend instead of DEPEND=
-rw-r--r-- | eclass/gnuconfig.eclass | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/eclass/gnuconfig.eclass b/eclass/gnuconfig.eclass index e29502a97296..a652e1d1900d 100644 --- a/eclass/gnuconfig.eclass +++ b/eclass/gnuconfig.eclass @@ -1,10 +1,10 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.11 2003/07/12 09:29:29 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.12 2003/07/22 00:49:32 msterret Exp $ # # Author: Will Woods <wwoods@gentoo.org> # -# This eclass is used to automatically update files that typically come with +# This eclass is used to automatically update files that typically come with # automake to the newest version available on the system. The most common use # of this is to update config.guess and config.sub when configure dies from # misguessing your canonical system name (CHOST). It can also be used to update @@ -13,23 +13,23 @@ # usage: gnuconfig_update [file1 file2 ...] # if called without arguments, config.guess and config.sub will be updated. # All files in the source tree ($S) with the given name(s) will be replaced -# with the newest available versions chosen from the list of locations in +# with the newest available versions chosen from the list of locations in # gnuconfig_findnewest(), below. ECLASS=gnuconfig INHERITED="$INHERITED $ECLASS" -DEPEND="$DEPEND sys-devel/libtool - sys-devel/gnuconfig" +newdepend "sys-devel/libtool + sys-devel/gnuconfig" DESCRIPTION="Based on the ${ECLASS} eclass" # Wrapper function for gnuconfig_do_update. If no arguments are given, update # config.sub and config.guess (old default behavior), otherwise update the -# named files. +# named files. gnuconfig_update() { - if [ $# -gt 0 ] ; then - gnuconfig_do_update $* + if [ $# -gt 0 ] ; then + gnuconfig_do_update $* else gnuconfig_do_update config.sub config.guess fi @@ -41,7 +41,7 @@ gnuconfig_do_update() { local configsubs_dir="$(gnuconfig_findnewest)" local target targetlist file einfo "Using GNU config files from ${configsubs_dir}" - for file in $* ; do + for file in $* ; do if [ ! -r ${configsubs_dir}/${file} ] ; then eerror "Can't read ${configsubs_dir}/${file}, skipping.." continue |