]> sourceware.org Git - automake.git/commitdiff
* aclocal.in (parse_arguments): Fix detection of unexisting default
authorAlexandre Duret-Lutz <adl@gnu.org>
Tue, 9 Nov 2004 10:23:02 +0000 (10:23 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Tue, 9 Nov 2004 10:23:02 +0000 (10:23 +0000)
$(datadir)/aclocal.  Report from Akim.

ChangeLog
aclocal.in

index 953f659d948595de547aace6c1552847743c3f4b..bb64eb31216c1df3a03d3ea4453f3f561104f729 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-09  Alexandre Duret-Lutz  <adl@gnu.org>
+
+       * aclocal.in (parse_arguments): Fix detection of unexisting default
+       $(datadir)/aclocal.  Report from Akim.
+
 2004-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
 
        * aclocal.in ($acdir): Rename as ...
index ca22476643bbba4159663ed8c2194311adcf3dba..42672bf4a61332a8d9def0bed223491c091e1be8 100644 (file)
@@ -655,7 +655,7 @@ sub parse_arguments ()
       # directory and it hasn't been created.  (We know
       # @system_includes has its default value if @automake_includes
       # is not empty, because --acdir is the only way to change this.)
-      @system_includes = () unless @automake_includes;
+      @system_includes = () if @automake_includes;
     }
   else
     {
This page took 0.033986 seconds and 5 git commands to generate.