use warnings instead of -w.
Jarkko Hietaniemi [Thu, 29 Mar 2001 14:42:58 +0000 (14:42 +0000)]
p4raw-id: //depot/perl@9440

utils/h2xs.PL

index 425704b..932e015 100644 (file)
@@ -26,7 +26,7 @@ print "Extracting $file (with variable substitutions)\n";
 # You can use $Config{...} to use Configure variables.
 
 print OUT <<"!GROK!THIS!";
-$Config{startperl} -w
+$Config{startperl}
     eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"}'
        if \$running_under_some_shell;
 !GROK!THIS!
@@ -35,6 +35,8 @@ $Config{startperl} -w
 
 print OUT <<'!NO!SUBS!';
 
+use warnings;
+
 =head1 NAME
 
 h2xs - convert .h C header files to Perl extensions