diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-07-19 18:03:38 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-08-01 11:53:52 +0200 |
commit | ed76ea85d17f2b52978e26c4baa4c2b6d78a55b7 (patch) | |
tree | c517bfda830329587f9d931b6cbc468cfa476887 /makedef.pl | |
parent | 47e4ddfcb98385296cc88313b983e1d6457585f4 (diff) | |
download | perl-ed76ea85d17f2b52978e26c4baa4c2b6d78a55b7.tar.gz |
In makedef.pl, correct a use of $^O to $PLATFORM.
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makedef.pl b/makedef.pl index 2771cc173f..80bc6eaea4 100644 --- a/makedef.pl +++ b/makedef.pl @@ -867,7 +867,7 @@ if ($define{HAS_SIGNBIT}) { )]) } -if ($^O ne 'vms') { +if ($PLATFORM ne 'vms') { # VMS does its own thing for these symbols. skip_symbols [qw(PL_sig_handlers_initted PL_sig_ignoring |