diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-18 23:04:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-18 23:04:57 +0000 |
commit | 87cfc061e53d48679484f1adfe10868d5d1216be (patch) | |
tree | ad9829d7cc79cda55fdb4ce25b9998414f278eae /eclass | |
parent | sh love (diff) | |
download | gentoo-2-87cfc061e53d48679484f1adfe10868d5d1216be.tar.gz gentoo-2-87cfc061e53d48679484f1adfe10868d5d1216be.tar.bz2 gentoo-2-87cfc061e53d48679484f1adfe10868d5d1216be.zip |
dont except invalid aclocal flags
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 3f683d4333fe..1b54254aa59e 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.28 2006/01/12 13:13:56 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.29 2006/01/18 23:04:57 vapier Exp $ # # Author: Diego Pettenò <flameeyes@gentoo.org> # Enhancements: Martin Schlemmer <azarah@gentoo.org> @@ -89,11 +89,6 @@ eaclocal() { "-I") # We handle it below ;; - "-I"*) - # Invalid syntax, but maybe we should help out ... - ewarn "eaclocal: Proper syntax is (note the space after '-I'): aclocal -I <dir>" - aclocal_opts="${aclocal_opts} -I ${x}" - ;; *) [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" aclocal_opts="${aclocal_opts} -I ${x}" |