From: Alexandre Duret-Lutz Date: Tue, 9 Nov 2004 10:23:03 +0000 (+0000) Subject: * aclocal.in (parse_arguments): Fix detection of unexisting default X-Git-Tag: Release-1-9b~261 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65680ff98f6776efaa790c3cfb3b7bf6341c1dc1;p=thirdparty%2Fautomake.git * aclocal.in (parse_arguments): Fix detection of unexisting default $(datadir)/aclocal. Report from Akim. --- diff --git a/ChangeLog b/ChangeLog index 953f659d9..bb64eb312 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-11-09 Alexandre Duret-Lutz + + * aclocal.in (parse_arguments): Fix detection of unexisting default + $(datadir)/aclocal. Report from Akim. + 2004-11-07 Alexandre Duret-Lutz * aclocal.in ($acdir): Rename as ... diff --git a/aclocal.in b/aclocal.in index ca2247664..42672bf4a 100644 --- a/aclocal.in +++ b/aclocal.in @@ -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 {