summaryrefslogtreecommitdiff
path: root/bin/ifnames.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/ifnames.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/ifnames.in')
-rw-r--r--bin/ifnames.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/ifnames.in b/bin/ifnames.in
index b0f50197..5d6c6cee 100644
--- a/bin/ifnames.in
+++ b/bin/ifnames.in
@@ -7,7 +7,7 @@ eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
# ifnames - print the identifiers used in C preprocessor conditionals
-# Copyright (C) 1994, 1995, 1999, 2000, 2001, 2002 Free Software
+# Copyright (C) 1994, 1995, 1999, 2000, 2001, 2002, 2003 Free Software
# Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
@@ -33,8 +33,8 @@ eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
BEGIN
{
- my $datadir = ($ENV{'autom4te_perllibdir'} || '@datadir@');
- unshift @INC, "$datadir";
+ 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,
@@ -69,7 +69,7 @@ $version = "\
ifnames (@PACKAGE_NAME@) @VERSION@
Written by David J. MacKenzie and Paul Eggert.
-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.
";