From: Alexandre Duret-Lutz Date: Mon, 10 Jun 2002 09:54:21 +0000 (+0000) Subject: * bin/autom4te.in ($cache): Don't define using `$me', the name X-Git-Tag: AUTOCONF-2.53b~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b18ea7e89e7e5cbe5d81247388417f265282a78;p=thirdparty%2Fautoconf.git * bin/autom4te.in ($cache): Don't define using `$me', the name of the cache should not depend on the name under which autom4te was installed. --- diff --git a/ChangeLog b/ChangeLog index a12ffed26..3f320c9a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-06-10 Alexandre Duret-Lutz + + * bin/autom4te.in ($cache): Don't define using `$me', the name + of the cache should not depend on the name under which autom4te + was installed. + 2002-06-07 Akim Demaille * tests/tools.at (autoconf: forbidden tokens, basic) diff --git a/bin/autom4te.in b/bin/autom4te.in index 47e4fe3b7..62024acbb 100644 --- a/bin/autom4te.in +++ b/bin/autom4te.in @@ -247,7 +247,7 @@ my $melt = 0; # Names of the cache directory, cache directory index, trace cache # prefix, and output cache prefix. -my $cache = "$me.cache"; +my $cache = "autom4te.cache"; my $icache = "$cache/requests"; my $tcache = "$cache/traces."; my $ocache = "$cache/output.";