+2001-04-10 Lars J. Aas <larsa@sim.no>
+
+ * autoupdate.in (print_usage): print "\ at end of line does not
+ work as expected, so change block to here-doc instead.
+ (print_version): Same.
+
2001-04-09 Steven G. Johnson <stevenj@alum.mit.edu>
* doc/autoconf.texi: Replace all tab characters with (8) spaces,
# Display usage (--help).
sub print_usage ()
{
- print "\
+ print <<"END";
Usage: $0 [OPTION] ... [TEMPLATE-FILE...]
Update the TEMPLATE-FILE... if given, or \`configure.ac' if present,
AUTOCONF autoconf @VERSION@
Report bugs to <bug-autoconf\@gnu.org>.
-";
+END
exit 0;
}
# Display version (--version).
sub print_version
{
- print "\
+ print <<END;
autoupdate (@PACKAGE_NAME@) @VERSION@
Written by David J. MacKenzie and Akim Demaille.
Copyright 1994, 1999, 2000, 2001 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-";
+END
exit 0;
}
# Display usage (--help).
sub print_usage ()
{
- print "\
+ print <<"END";
Usage: $0 [OPTION] ... [TEMPLATE-FILE...]
Update the TEMPLATE-FILE... if given, or \`configure.ac' if present,
AUTOCONF autoconf @VERSION@
Report bugs to <bug-autoconf\@gnu.org>.
-";
+END
exit 0;
}
# Display version (--version).
sub print_version
{
- print "\
+ print <<END;
autoupdate (@PACKAGE_NAME@) @VERSION@
Written by David J. MacKenzie and Akim Demaille.
Copyright 1994, 1999, 2000, 2001 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-";
+END
exit 0;
}
# Display usage (--help).
sub print_usage ()
{
- print "\
+ print <<"END";
Usage: $0 [OPTION] ... [TEMPLATE-FILE...]
Update the TEMPLATE-FILE... if given, or \`configure.ac' if present,
AUTOCONF autoconf @VERSION@
Report bugs to <bug-autoconf\@gnu.org>.
-";
+END
exit 0;
}
# Display version (--version).
sub print_version
{
- print "\
+ print <<END;
autoupdate (@PACKAGE_NAME@) @VERSION@
Written by David J. MacKenzie and Akim Demaille.
Copyright 1994, 1999, 2000, 2001 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-";
+END
exit 0;
}