Just a minor detail.
Lars J
2000-09-08 Lars J. Aas <[EMAIL PROTECTED]>
* aclocal.in (write_aclocal): Set up aclocal.m4 header with
normal comments (#) instead of m4 dnl-type comments.
Index: aclocal.in
===================================================================
RCS file: /cvs/automake/automake/aclocal.in,v
retrieving revision 1.45
diff -u -r1.45 aclocal.in
--- aclocal.in 2000/03/20 00:12:59 1.45
+++ aclocal.in 2000/09/08 18:26:18
@@ -425,17 +425,17 @@
open (ACLOCAL, "> " . $output_file)
|| die "aclocal: couldn't open \`$output_file' for writing: $!\n";
- print ACLOCAL "dnl $output_file generated automatically by aclocal $VERSION\n";
+ print ACLOCAL "# $output_file generated automatically by aclocal $VERSION\n";
print ACLOCAL "\
-dnl Copyright (C) 1994, 1995-9, 2000 Free Software Foundation, Inc.
-dnl This file is free software; the Free Software Foundation
-dnl gives unlimited permission to copy and/or distribute it,
-dnl with or without modifications, as long as this notice is preserved.
+# Copyright (C) 1994, 1995-9, 2000 Free Software Foundation, Inc.
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
-dnl This program is distributed in the hope that it will be useful,
-dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-dnl PARTICULAR PURPOSE.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
";
print ACLOCAL $output;