summaryrefslogtreecommitdiff
path: root/bin/autoheader.in
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2003-05-16 09:54:46 +0000
committerAkim Demaille <akim@epita.fr>2003-05-16 09:54:46 +0000
commit62930d7b99992ea07e52fe010fdcf2cbef14b9e7 (patch)
tree5857167796260ea29380e5fd197f8ab8f97a7199 /bin/autoheader.in
parent46237304df1b5007ed3e52fd6598cf1e0100ce13 (diff)
downloadautoconf-62930d7b99992ea07e52fe010fdcf2cbef14b9e7.tar.gz
* bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
* bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make them uniform, and more robust to Perl special characters. Reported by Martin Mokrej.
Diffstat (limited to 'bin/autoheader.in')
-rw-r--r--bin/autoheader.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/autoheader.in b/bin/autoheader.in
index adf6d822..59ea90b2 100644
--- a/bin/autoheader.in
+++ b/bin/autoheader.in
@@ -6,7 +6,7 @@ eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
if 0;
# autoheader -- create `config.h.in' from `configure.ac'
-# Copyright (C) 1992, 1993, 1994, 1996, 1998, 1999, 2000, 2001, 2002
+# Copyright (C) 1992, 1993, 1994, 1996, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
@@ -29,8 +29,8 @@ eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
BEGIN
{
- my $perllibdir = $ENV{'autom4te_perllibdir'} || '@datadir@';
- unshift @INC, "$perllibdir";
+ my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@';
+ unshift @INC, "$datadir";
# Override SHELL. On DJGPP SHELL may not be set to a shell
# that can handle redirection and quote arguments correctly,
@@ -92,7 +92,7 @@ $version = <<"END";
autoheader (@PACKAGE_NAME@) @VERSION@
Written by Roland McGrath and Akim Demaille.
-Copyright 2002 Free Software Foundation, Inc.
+Copyright (C) 2003 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