]> sourceware.org Git - automake.git/commitdiff
Fix for PR automake/174:
authorTom Tromey <tromey@redhat.com>
Thu, 17 May 2001 06:32:14 +0000 (06:32 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 17 May 2001 06:32:14 +0000 (06:32 +0000)
* tests/Makefile.am (XFAIL_TESTS): Removed comment3.test.
* automake.in (read_am_file): Warn if `#' is at start of rule.

ChangeLog
automake.in
tests/Makefile.am
tests/Makefile.in

index 73b3580d5721bbd7811a3547bd2901a6d40fcf34..a82e860422173c0927aef85935084a991f424258 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-05-17  Tom Tromey  <tromey@redhat.com>
+
+       Fix for PR automake/174:
+       * tests/Makefile.am (XFAIL_TESTS): Removed comment3.test.
+       * automake.in (read_am_file): Warn if `#' is at start of rule.
+
 2001-05-16  Tom Tromey  <tromey@redhat.com>
 
        For PR automake/174:
index 370f021fdc5a7560a06f3dbd71fb0a69a5fae608..87a3a1dd78c17dae0a67ca8072398a1d8842d3f0 100755 (executable)
@@ -6509,6 +6509,8 @@ sub read_am_file
            $output_trailer .= &make_condition  (@cond_stack);
            $output_trailer .= $_;
            $comment = $spacing = '';
+           &am_line_error ($., "`#' comment at start of rule is unportable")
+               if $_ =~ /^\t\s*\#/;
        }
 
        $saw_bk = $new_saw_bk;
index d7728172c619e7dbbb520f3168d8cb1b4f020b82..b85c670a3d55484771cd4fe11d173f37e05fafbf 100644 (file)
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = gnits
 
-XFAIL_TESTS = subdir5.test comment3.test
+XFAIL_TESTS = subdir5.test
 
 TESTS =        \
 acinclude.test \
index c4f1c489409c1603ec43a467466ce43111b83078..53d1a398c1192885c8de6aa458592324e7e510a1 100644 (file)
@@ -70,7 +70,7 @@ install_sh = @install_sh@
 
 AUTOMAKE_OPTIONS = gnits
 
-XFAIL_TESTS = subdir5.test comment3.test
+XFAIL_TESTS = subdir5.test
 
 TESTS = \
 acinclude.test \
This page took 0.044289 seconds and 5 git commands to generate.