diff options
author | Jim Meyering <jim@meyering.net> | 2003-05-28 18:05:46 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-05-28 18:05:46 +0000 |
commit | 38f8cadb9c5a7c60ed651fe973cdbde8521eb2b4 (patch) | |
tree | d470d9e20af7df84ce877121f605db360a058366 /src | |
parent | e46a15ec9c82cf0e8fa1df84d3c622d7172837fe (diff) | |
download | coreutils-38f8cadb9c5a7c60ed651fe973cdbde8521eb2b4.tar.xz |
Allow expansion of `$file' in the here-
document corresponding to comment at the top of fs.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/extract-magic | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extract-magic b/src/extract-magic index fdc8ffe1f..cd97b4bed 100644 --- a/src/extract-magic +++ b/src/extract-magic @@ -4,7 +4,7 @@ use strict; use Getopt::Long; -(my $VERSION = '$Revision: 1.1 $ ') =~ tr/[0-9].//cd; +(my $VERSION = '$Revision: 1.2 $ ') =~ tr/[0-9].//cd; (my $ME = $0) =~ s|.*/||; END @@ -87,9 +87,9 @@ EOF # Fail if there is a `case S_MAGIC_.*' line without # a properly formed comment. - print <<\EOF; + print <<EOF; /* Define the magic numbers as given by statfs(2). - Please send additions to meskes@debian.org. + Please send additions to meskes\@debian.org. This file is generated automatically from $file. */ #if defined __linux__ |