summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad House <brad_mssw@gentoo.org>2004-02-16 04:57:01 +0000
committerBrad House <brad_mssw@gentoo.org>2004-02-16 04:57:01 +0000
commit053a707bd2ef20e25b3f3f1a2e6833f768edb7e2 (patch)
tree403caf2133fe60c214a13b4694510bf5d0c02b39 /sys-devel/autoconf/files
parentInitial Import, wvu. (Manifest recommit) (diff)
downloadgentoo-2-053a707bd2ef20e25b3f3f1a2e6833f768edb7e2.tar.gz
gentoo-2-053a707bd2ef20e25b3f3f1a2e6833f768edb7e2.tar.bz2
gentoo-2-053a707bd2ef20e25b3f3f1a2e6833f768edb7e2.zip
revert patches
Diffstat (limited to 'sys-devel/autoconf/files')
-rw-r--r--sys-devel/autoconf/files/ac-wrapper-2.pl11
1 files changed, 2 insertions, 9 deletions
diff --git a/sys-devel/autoconf/files/ac-wrapper-2.pl b/sys-devel/autoconf/files/ac-wrapper-2.pl
index 5601bc74f732..561cea33a3e2 100644
--- a/sys-devel/autoconf/files/ac-wrapper-2.pl
+++ b/sys-devel/autoconf/files/ac-wrapper-2.pl
@@ -54,10 +54,10 @@ if ($ENV{WANT_AUTOCONF} ne '2.1') {
|| (-x $binary_new # user may have only 2.13
&& (($ENV{WANT_AUTOCONF} eq '2.5')
|| -r 'configure.ac'
- || (cat_('configure.in') =~ /^\s*\[?AC_PREREQ\(\[?([^\)]{3})[^\)]*\]?\)/m ? $1 : '') gt '2.1'
+ || (cat_('configure.in') =~ /^\s*\[?AC_PREREQ\(\[?([^\)]{3})[^\)]*\]?\)/m ? $1 : '') gt '2.1'
|| (cat_('configure') =~ /^# Generated by Autoconf (\S+)/m ? $1 : '') gt '2.1'
|| (cat_('Makefile.in') =~ /^# Makefile\.in generated by automake (\S+)/ ? $1 : '') ge '1.6'
- || (cat_('aclocal.m4') =~ /^\s*\[?AC_PREREQ\(\[?([^\)]{3}[0-9]?)[^\)]*\]?\)/m ? $1 : '') gt '2.1'))) {
+ || (cat_('aclocal.m4') =~ /^\s*\[?AC_PREREQ\(\[?([^\)]{3})[^\)]*\]?\)/m ? $1 : '') gt '2.1'))) {
$ENV{WANT_AUTOCONF} = '2.5'; # to prevent further "cats" and to enhance consistency (possible cwd etc)
$binary = $binary_new;
} else {
@@ -65,13 +65,6 @@ if ($ENV{WANT_AUTOCONF} ne '2.1') {
}
}
-# Set AUTOM4TE to the proper version (bug #40983).
-# Do not set it for 2.13 though, as it does not ship autom4te.
-if(($ENV{AUTOM4TE} eq "") && ($binary ne "$0-2.13")) {
- $ENV{AUTOM4TE} = $binary;
- $ENV{AUTOM4TE} =~ s/autoconf/autom4te/;
-}
-
$ENV{WANT_ACWRAPPER_DEBUG} and print STDERR "ac-wrapper: will execute <$binary>\n";
exec $binary, @ARGV;