]> sourceware.org Git - automake.git/commitdiff
* automake.in (handle_texinfo): Handle empty $config_aux_dir.
authorTom Tromey <tromey@redhat.com>
Sun, 10 Jan 1999 20:42:49 +0000 (20:42 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 10 Jan 1999 20:42:49 +0000 (20:42 +0000)
ChangeLog
automake.in

index ef758159028667402bec2d541a1d9619b6e1309e..6b9fdc71a6a540ec4a245d2ca27e4aa63f18f8ef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1999-01-10  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (handle_texinfo): Handle empty $config_aux_dir.
+
        * automake.in (handle_texinfo): Set $conf_pat correctly when
        config_aux_dir not used.
        (handle_texinfo): Run maintainer-clean-aminfo rules in srcdir.
index f155ff6c9a6a4eb312045e34a68a0623866ba1f9..1b442558f329d09b3464a1c3ad5c8543586a2d30 100755 (executable)
@@ -1929,7 +1929,7 @@ sub handle_texinfo
            ++$done;
 
            local ($conf_pat, $conf_dir);
-           if ($config_aux_dir eq '.')
+           if ($config_aux_dir eq '.' || $config_aux_dir eq '')
            {
                $conf_dir = '$(srcdir)/';
            }
This page took 0.037739 seconds and 5 git commands to generate.