Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 426262
Collapse All | Expand All

(-)a/eclass/autotools.eclass (-4 / +5 lines)
Lines 341-350 eautoconf() { Link Here
341
		echo
341
		echo
342
		die "No configure.{ac,in} present!"
342
		die "No configure.{ac,in} present!"
343
	fi
343
	fi
344
	if [[ ${WANT_AUTOCONF} != "2.1" && -e configure.in ]] ; then
344
	if [[ ${WANT_AUTOCONF} != "2.1" && -e configure.in && ! -e configure.ac ]] ; then
345
		eqawarn "This package has a configure.in file which has long been deprecated.  Please"
345
		eqawarn "This package has a configure.in file which has long been deprecated. Since no"
346
		eqawarn "update it to use configure.ac instead as newer versions of autotools will die"
346
		eqawarn "configure.ac is present either, we rename configure.in to configure.ac. If"
347
		eqawarn "when it finds this file.  See https://bugs.gentoo.org/426262 for details."
347
		eqawarn "this causes problems, please file a bug report and make it block bug #426262."
348
		mv configure.{in,ac} || die
348
	fi
349
	fi
349
350
350
	autotools_run_tool --at-m4flags autoconf "$@"
351
	autotools_run_tool --at-m4flags autoconf "$@"

Return to bug 426262