diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-30 09:31:16 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-30 09:31:16 +0000 |
commit | 8cfb55f6c5d0035e73f26de7bed0c6a9757d3245 (patch) | |
tree | f50dc0b6a3f1aa7da01bb48f4d28bfbcb320ca16 | |
parent | stable on amd64 wrt bug 101842 (diff) | |
download | gentoo-2-8cfb55f6c5d0035e73f26de7bed0c6a9757d3245.tar.gz gentoo-2-8cfb55f6c5d0035e73f26de7bed0c6a9757d3245.tar.bz2 gentoo-2-8cfb55f6c5d0035e73f26de7bed0c6a9757d3245.zip |
--force-missing seems not to be recognized by some flavours of automake
-rw-r--r-- | eclass/autotools.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 87991cf66889..4bd074ad548f 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.13 2005/08/29 10:09:07 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.14 2005/08/30 09:31:16 flameeyes Exp $ # # Author: Diego Pettenò <flameeyes@gentoo.org> # Enhancements: Martin Schlemmer <azarah@gentoo.org> @@ -112,7 +112,8 @@ eautoconf() { eautomake() { [[ -f Makefile.am ]] || return 0 - autotools_run_tool automake --add-missing --force-missing --copy "$@" + # --force-missing seems not to be recognized by some flavours of automake + autotools_run_tool automake --add-missing --copy "$@" } # This function mimes the behavior of autoreconf, but uses the different |