From: Akim Demaille Date: Mon, 9 Apr 2001 16:12:11 +0000 (+0000) Subject: * automake.in (&handle_configure): Don't bother with optimizing X-Git-Tag: handle-languages~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3790a17d54f830c401be73b248c2977dedcacb51;p=thirdparty%2Fautomake.git * automake.in (&handle_configure): Don't bother with optimizing macro uses. --- diff --git a/ChangeLog b/ChangeLog index 3eddae80a..3f902712d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-04-09 Akim Demaille + + * automake.in (&handle_configure): Don't bother with optimizing + macro uses. + 2001-04-09 Akim Demaille * tests/cond3.test (expected): Adjust. diff --git a/automake.in b/automake.in index 0434bb655..03e7653da 100755 --- a/automake.in +++ b/automake.in @@ -3392,14 +3392,7 @@ sub handle_configure # For now, acconfig.h can only appear in the top srcdir. if (-f 'acconfig.h') { - if ($relative_dir eq '.') - { - push (@files, 'acconfig.h'); - } - else - { - push (@files, '$(top_srcdir)/acconfig.h'); - } + push (@files, '$(top_srcdir)/acconfig.h'); } my $stamp_name = 'stamp-h';