diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-04 14:56:46 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-04 14:56:46 +0000 |
commit | e0c1adb742452fd6b1385b53c3d78a4b58e649d0 (patch) | |
tree | 4294be20769dfa3580262e2a7fdde623e7f61358 /eclass/autotools.eclass | |
parent | Fix unneeded arts dependency (diff) | |
download | historical-e0c1adb742452fd6b1385b53c3d78a4b58e649d0.tar.gz historical-e0c1adb742452fd6b1385b53c3d78a4b58e649d0.tar.bz2 historical-e0c1adb742452fd6b1385b53c3d78a4b58e649d0.zip |
Get a QA notice when the WANT_AUTOMAKE/WANT_AUTOCONF variables are unset.
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 438ed7416740..c40000fc895d 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.60 2006/12/18 13:41:12 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.61 2007/01/04 14:56:46 flameeyes Exp $ # # Author: Diego Pettenò <flameeyes@gentoo.org> # Enhancements: Martin Schlemmer <azarah@gentoo.org> @@ -200,6 +200,8 @@ autotools_set_versions() { einfo "Requested autoconf ${WANT_AUTOCONF}" einfo "Using $(autoconf --version 2>/dev/null | head -n 1)" einfo "Using $(autoheader --version 2>/dev/null | head -n 1)" + else + ewarn "QA Notice: \${WANT_AUTOCONF} variable unset. Please report on http://bugs.gentoo.org/" fi if [[ -n ${WANT_AUTOMAKE} ]]; then @@ -215,6 +217,8 @@ autotools_set_versions() { einfo "Requested automake ${latest_automake}${WANT_AUTOMAKE}" einfo "Using $(automake --version 2>/dev/null | head -n 1)" einfo "Using $(aclocal --version 2>/dev/null | head -n 1)" + else + ewarn "QA Notice: \${WANT_AUTOMAKE} variable unset. Please report on http://bugs.gentoo.org/" fi autotools_version_sets="yes" |