summaryrefslogtreecommitdiff
path: root/ext/Errno
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-26 03:44:29 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-26 03:44:29 +0000
commit41ab0dfbdb7508917dba8579f742267fc1e67fa6 (patch)
treeda7317aca936d6ad99e8a50e3a1ab084fed09962 /ext/Errno
parent8ff7320bf5679e744f05871cb93b15638cca1144 (diff)
downloadperl-41ab0dfbdb7508917dba8579f742267fc1e67fa6.tar.gz
There seems to be two ways of spelling the $^O in *STEP.
p4raw-id: //depot/perl@10948
Diffstat (limited to 'ext/Errno')
-rw-r--r--ext/Errno/Errno_pm.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL
index 93790af279..f4e22c36da 100644
--- a/ext/Errno/Errno_pm.PL
+++ b/ext/Errno/Errno_pm.PL
@@ -30,7 +30,7 @@ sub process_file {
} elsif ($Config{gccversion} ne '' &&
# OpenSTEP has gcc 2.7.2.1 which recognizes but
# doesn't implement the -dM flag.
- $^O ne 'next4'
+ $^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 |")) {