* aclocal.in (write_aclocal): Set up aclocal.m4 header with
authorAkim Demaille <akim@epita.fr>
Tue, 17 Oct 2000 09:36:59 +0000 (09:36 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 17 Oct 2000 09:36:59 +0000 (09:36 +0000)
normal comments (#) instead of m4 dnl-type comments.

ChangeLog
aclocal.in

index c501998..d825409 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-17  Lars J. Aas  <larsa@sim.no>
+
+       * aclocal.in (write_aclocal): Set up aclocal.m4 header with
+       normal comments (#) instead of m4 dnl-type comments.
+
 2000-10-17  Alex Hornby <alex@anvil.com>
 
        * depcomp: Altered sed clause to strip of inclusion depth
index 8426dff..7c9e9a2 100644 (file)
@@ -429,18 +429,18 @@ sub write_aclocal
 
     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 1994, 1995, 1996, 1997, 1998, 1999, 2000
-dnl 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.
-
-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.
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 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.
+
+# 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;