diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-26 11:49:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-26 11:49:09 +0000 |
commit | 7237d65751f248e676243bc1e148084f323f4838 (patch) | |
tree | e6c63ac1f41430c5573ac13b440641b8192ce550 /ext/Errno | |
parent | 41ab0dfbdb7508917dba8579f742267fc1e67fa6 (diff) | |
download | perl-7237d65751f248e676243bc1e148084f323f4838.tar.gz |
Detypo.
p4raw-id: //depot/perl@10949
Diffstat (limited to 'ext/Errno')
-rw-r--r-- | ext/Errno/Errno_pm.PL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL index f4e22c36da..b3514d41e0 100644 --- a/ext/Errno/Errno_pm.PL +++ b/ext/Errno/Errno_pm.PL @@ -27,10 +27,10 @@ sub process_file { warn "Cannot open '$file'"; return; } - } elsif ($Config{gccversion} ne '' && + } elsif ($Config{gccversion} ne '' # OpenSTEP has gcc 2.7.2.1 which recognizes but # doesn't implement the -dM flag. - $^O ne 'openstep' && $^O ne 'next') + && $^O ne 'openstep' && $^O ne 'next' ) { # With the -dM option, gcc outputs every #define it finds unless(open(FH,"$Config{cc} -E -dM $Config{cppflags} $file |")) { |