]> sourceware.org Git - automake.git/commitdiff
usage fixes
authorTom Tromey <tromey@redhat.com>
Tue, 24 Sep 1996 02:52:20 +0000 (02:52 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 24 Sep 1996 02:52:20 +0000 (02:52 +0000)
ChangeLog
aclocal.in
automake.in

index 0a1508e4c6e8dccc29fff139fb1c0db384b695a4..5992a2b14b8a4c828fe120aba44b85c3e3051e8d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 Mon Sep 23 00:04:48 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
+       * automake.in (parse_arguments): New usage to conform to GNU
+       standards.
+
+       * aclocal.in (parse_arguments): New usage to conform to GNU
+       standards.
+
        * automake.in (handle_scripts): Push new target onto @check.
        * scripts.am (check-@DIR@SCRIPTS): New target.
 
index 3ce839cb33d3a7968dcdeaaebcafcfd733a61913..034c7640d42d0a5a707c5dae56357990ed59c6e1 100644 (file)
@@ -2,6 +2,26 @@
 # -*- perl -*-
 # @configure_input@
 
+# aclocal - create aclocal.m4 by scanning configure.in
+# Copyright (C) 1996 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
+# Written by Tom Tromey <tromey@cygnus.com>.
+
 eval 'exec @PERL@ -S $0 ${1+"$@"}'
     if 0;
 
@@ -111,7 +131,12 @@ sub parse_arguments
        }
        elsif ($arglist[0] eq '--version')
        {
-           print "aclocal - GNU $PACKAGE $VERSION\n";
+           print "aclocal (GNU $PACKAGE) $VERSION\n";
+           print "Copyright (C) 1996 Free Software Foundation, Inc.\n";
+           print "aclocal comes with ABSOLUTELY NO WARRANTY.\n";
+           print "You may redistribute copies of aclocal\n";
+           print "under the terms of the GNU General Public License.\n";
+           print "For more information about these matters, see the file named COPYING.\n";
            exit 0;
        }
        elsif ($arglist[0] eq '--help')
index e35aff7e5f4bed7ec9cfd632757dd41d697af5cd..25e1db8270481afea8b987289cd7e94c111cf2f5 100755 (executable)
@@ -258,7 +258,12 @@ sub parse_arguments
     {
        if ($arglist[0] eq "--version")
        {
-           print "automake - GNU $PACKAGE $VERSION\n";
+           print "automake (GNU $PACKAGE) $VERSION\n";
+           print "Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.\n";
+           print "automake comes with ABSOLUTELY NO WARRANTY.\n";
+           print "You may redistribute copies of automake\n";
+           print "under the terms of the GNU General Public License.\n";
+           print "For more information about these matters, see the file named COPYING.\n";
            exit 0;
        }
        elsif ($arglist[0] eq "--help")
This page took 0.038464 seconds and 5 git commands to generate.