]> sourceware.org Git - automake.git/commitdiff
* automake.in (handle_dist_worker): Typo fix in code testing to
authorTom Tromey <tromey@redhat.com>
Sat, 24 Oct 1998 19:07:10 +0000 (19:07 +0000)
committerTom Tromey <tromey@redhat.com>
Sat, 24 Oct 1998 19:07:10 +0000 (19:07 +0000)
see if subdir is `.'.  From Raja R Harinath.

ChangeLog
automake.in

index a0e1dfef85dd912042ba8c861982892802fdf18f..e8cc46f489b5affd35ceb974b1bf71b8c21ff48e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1998-10-24  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (handle_dist_worker): Typo fix in code testing to
+       see if subdir is `.'.  From Raja R Harinath.
+
        * m4/lispdir.m4: Fixed sed invocation.  From Akim Demaille.
 
 1998-10-20  Tom Tromey  <tromey@cygnus.com>
index 965bb7f5b3151f727ce9d621a20b151ccc58ae3e..f8d6e0e7fa53dc7a7afb5eaefa072956587def0e 100755 (executable)
@@ -2383,7 +2383,7 @@ sub handle_dist_worker
        # correctly with an enclosing package.
        $output_rules .= 
            ("\t" . 'for subdir in $(' . $dist_subdir_name . '); do ' . "\\\n"
-            . "\t" . '  if test "$$srcdir" = .; then :; else ' . "\\\n"
+            . "\t" . '  if test "$$subdir" = .; then :; else ' . "\\\n"
             . "\t" . '    test -d $(distdir)/$$subdir ' . "\\\n"
             . "\t" . '    || mkdir $(distdir)/$$subdir ' . "\\\n"
             . "\t" . '    || exit 1; ' . "\\\n"
This page took 0.042519 seconds and 5 git commands to generate.