summaryrefslogtreecommitdiff
path: root/utils/h2xs.PL
diff options
context:
space:
mode:
authorStas Bekman <stas@stason.org>2003-02-14 22:59:53 +1100
committerhv <hv@crypt.org>2003-03-17 01:38:23 +0000
commit1dd73f2742b0eabfe6ac8450e3f71bc08cb138db (patch)
treea0b7a26116db899cdfe5567e787fb2ea446a2b94 /utils/h2xs.PL
parent1d9525ac4548fadba8931dabed738577ec3119a6 (diff)
downloadperl-1dd73f2742b0eabfe6ac8450e3f71bc08cb138db.tar.gz
[patch] utils/h2xs.PL (get rid of \t and '')
Message-ID: <3E4C3F89.6050005@stason.org> p4raw-id: //depot/perl@19004
Diffstat (limited to 'utils/h2xs.PL')
-rw-r--r--utils/h2xs.PL20
1 files changed, 10 insertions, 10 deletions
diff --git a/utils/h2xs.PL b/utils/h2xs.PL
index df89626b91..f9a09a1c09 100644
--- a/utils/h2xs.PL
+++ b/utils/h2xs.PL
@@ -1842,12 +1842,12 @@ use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
- 'NAME' => '$module',
- 'VERSION_FROM' => '$modfname.pm', # finds \$VERSION
- 'PREREQ_PM' => {$prereq_pm}, # e.g., Module::Name => 1.1
- (\$] >= 5.005 ? ## Add these new keywords supported since 5.005
- (ABSTRACT_FROM => '$modfname.pm', # retrieve abstract from module
- AUTHOR => '$author <$email>') : ()),
+ NAME => '$module',
+ VERSION_FROM => '$modfname.pm', # finds \$VERSION
+ PREREQ_PM => {$prereq_pm}, # e.g., Module::Name => 1.1
+ (\$] >= 5.005 ? ## Add these new keywords supported since 5.005
+ (ABSTRACT_FROM => '$modfname.pm', # retrieve abstract from module
+ AUTHOR => '$author <$email>') : ()),
END
if (!$opt_X) { # print C stuff, unless XS is disabled
$opt_F = '' unless defined $opt_F;
@@ -1858,9 +1858,9 @@ if (!$opt_X) { # print C stuff, unless XS is disabled
EOC
print PL <<END;
- 'LIBS' => ['$extralibs'], # e.g., '-lm'
- 'DEFINE' => '$opt_F', # e.g., '-DHAVE_SOMETHING'
-$Icomment 'INC' => '$I', # e.g., '${Ihelp}-I/usr/include/other'
+ LIBS => ['$extralibs'], # e.g., '-lm'
+ DEFINE => '$opt_F', # e.g., '-DHAVE_SOMETHING'
+$Icomment INC => '$I', # e.g., '${Ihelp}-I/usr/include/other'
END
my $C = grep {$_ ne "$modfname.c"}
@@ -1871,7 +1871,7 @@ END
EOC
print PL <<END;
-$Ccomment $Cpre\'OBJECT' => '\$(O_FILES)', # link all the C files too
+$Ccomment ${Cpre}OBJECT => '\$(O_FILES)', # link all the C files too
END
} # ' # Grr
print PL ");\n";