From: Jarkko Hietaniemi Date: Tue, 26 Jun 2001 11:49:09 +0000 (+0000) Subject: Detypo. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7237d65751f248e676243bc1e148084f323f4838;p=p5sagit%2Fp5-mst-13.2.git Detypo. p4raw-id: //depot/perl@10949 --- diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL index f4e22c3..b3514d4 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 |")) {