diff options
author | Craig A. Berry <craigberry@mac.com> | 2009-09-07 21:15:58 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2009-09-07 22:16:02 -0500 |
commit | d1ce36d727ed53b12332c6ef40743b21335b21a1 (patch) | |
tree | 3ed95317d7b596f6b74727be53241dce5c79a34f /make_ext.pl | |
parent | 4e7371bde887023f24c379d2444a74291b24b544 (diff) | |
download | perl-d1ce36d727ed53b12332c6ef40743b21335b21a1.tar.gz |
Implement nonxs_ext on VMS.
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/make_ext.pl b/make_ext.pl index 507f04748c..cfc12c2971 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -179,6 +179,7 @@ elsif ($is_VMS) { $perl = $^X; push @extspec, (split ' ', $Config{static_ext}) if $static; push @extspec, (split ' ', $Config{dynamic_ext}) if $dynamic; + push @extspec, (split ' ', $Config{nonxs_ext}) if $dynamic; } foreach my $spec (@extspec) { |