summaryrefslogtreecommitdiff
path: root/aclocal.in
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1997-08-27 19:16:58 +0000
committerTom Tromey <tromey@redhat.com>1997-08-27 19:16:58 +0000
commitcc2cb4bc71bac4c3f3fd8069cd80e02f837b14ca (patch)
treee578381e085697f61fdea2f8f7817e4e135c362c /aclocal.in
parentac6bacbd5df84f77ef7a8858bbf298adb30f8cde (diff)
downloadautomake-cc2cb4bc71bac4c3f3fd8069cd80e02f837b14ca.tar.gz
copyright fixups
Diffstat (limited to 'aclocal.in')
-rw-r--r--aclocal.in14
1 files changed, 13 insertions, 1 deletions
diff --git a/aclocal.in b/aclocal.in
index c156a4090..5b1141568 100644
--- a/aclocal.in
+++ b/aclocal.in
@@ -378,7 +378,19 @@ sub write_aclocal
open (ACLOCAL, "> aclocal.m4")
|| die "aclocal: couldn't open \`aclocal.m4' for writing: $!\n";
- print ACLOCAL "dnl aclocal.m4 generated automatically by aclocal $VERSION\n\n";
+ print ACLOCAL "dnl aclocal.m4 generated automatically by aclocal $VERSION\n";
+ print ACLOCAL "\
+dnl Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+dnl This Makefile.in 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.
+
+";
print ACLOCAL $output;
close (ACLOCAL);
}