summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2005-08-30 09:31:16 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2005-08-30 09:31:16 +0000
commit9637ec09291d84d76fa245d23fc072fc0d267939 (patch)
treea9819f4522795c1b28915bc0f8d0e31aaf1b37c2 /eclass
parentstable on amd64 wrt bug 101842 (diff)
downloadhistorical-9637ec09291d84d76fa245d23fc072fc0d267939.tar.gz
historical-9637ec09291d84d76fa245d23fc072fc0d267939.tar.bz2
historical-9637ec09291d84d76fa245d23fc072fc0d267939.zip
--force-missing seems not to be recognized by some flavours of automake
Diffstat (limited to 'eclass')
-rw-r--r--eclass/autotools.eclass5
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