diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-07-14 08:34:27 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-07-14 08:34:27 +0000 |
commit | c2e1927df952b09ae029df1b8ccd86507bc26672 (patch) | |
tree | 3c260f0514996be811bdc1b275b26fae944f9e98 /eclass/xorg-2.eclass | |
parent | reassign to cpp herd too, since this is not really maintained (diff) | |
download | gentoo-2-c2e1927df952b09ae029df1b8ccd86507bc26672.tar.gz gentoo-2-c2e1927df952b09ae029df1b8ccd86507bc26672.tar.bz2 gentoo-2-c2e1927df952b09ae029df1b8ccd86507bc26672.zip |
Check also for configure.in, altho upstreams should name it .ac
Diffstat (limited to 'eclass/xorg-2.eclass')
-rw-r--r-- | eclass/xorg-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/xorg-2.eclass b/eclass/xorg-2.eclass index a8918d6d9714..f20a3d0b78bf 100644 --- a/eclass/xorg-2.eclass +++ b/eclass/xorg-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.5 2010/07/04 20:42:22 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.6 2010/07/14 08:34:27 scarabeus Exp $ # # @ECLASS: xorg-2.eclass # @MAINTAINER: @@ -208,7 +208,7 @@ xorg-2_reconf_source() { case ${CHOST} in *-interix* | *-aix* | *-winnt*) # some hosts need full eautoreconf - [[ -e "./configure.ac" ]] && eautoreconf || ewarn "Unable to autoreconf the configure script. Things may fail." + [[ -e "./configure.ac" || -e "./configure.in" ]] && eautoreconf || ewarn "Unable to autoreconf the configure script. Things may fail." ;; *) # elibtoolize required for BSD |