diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-03-03 15:50:33 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-03-03 15:50:33 +0000 |
commit | 3fa583e00bcd0f1b80894cefde917ba28e8b2c38 (patch) | |
tree | 1e0af0d919ca6aacf544904bd5d5b48b2d9e2306 /ext/DynaLoader | |
parent | b3c9268ed0dec6021c3bd2a7a1bfda7d4fd445a3 (diff) | |
download | perl-3fa583e00bcd0f1b80894cefde917ba28e8b2c38.tar.gz |
Must only use dynamic extensions in the Dynaloader test. If the
extensions are static, it doesn't work :-)
p4raw-id: //depot/perl@30453
Diffstat (limited to 'ext/DynaLoader')
-rw-r--r-- | ext/DynaLoader/t/DynaLoader.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DynaLoader/t/DynaLoader.t b/ext/DynaLoader/t/DynaLoader.t index 262a8a8cf5..619887cb1f 100644 --- a/ext/DynaLoader/t/DynaLoader.t +++ b/ext/DynaLoader/t/DynaLoader.t @@ -98,7 +98,7 @@ SKIP: { } # Now try to load well known XS modules -my $extensions = $Config{'extensions'}; +my $extensions = $Config{'dynamic_ext'}; $extensions =~ s|/|::|g; for my $module (sort keys %modules) { |