From 6f582fefa03a6fc314fad8c50a930fb6f680df9d Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sat, 24 Oct 1998 19:07:10 +0000 Subject: [PATCH] * automake.in (handle_dist_worker): Typo fix in code testing to see if subdir is `.'. From Raja R Harinath. --- ChangeLog | 3 +++ automake.in | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a0e1dfef..e8cc46f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1998-10-24 Tom Tromey + * 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 diff --git a/automake.in b/automake.in index 965bb7f5..f8d6e0e7 100755 --- a/automake.in +++ b/automake.in @@ -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" -- 2.43.5