From: Akim Demaille Date: Mon, 9 Apr 2001 16:12:10 +0000 (+0000) Subject: * automake.in (&handle_configure): Don't bother with optimizing X-Git-Tag: handle-languages~74 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=6ad1cb601a71e59459dc518c611b59c08441d6cd;p=automake.git * automake.in (&handle_configure): Don't bother with optimizing macro uses. --- diff --git a/ChangeLog b/ChangeLog index 3eddae80..3f902712 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 0434bb65..03e7653d 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';