From: Nicholas Clark Date: Sat, 3 Mar 2007 15:50:33 +0000 (+0000) Subject: Must only use dynamic extensions in the Dynaloader test. If the X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3fa583e00bcd0f1b80894cefde917ba28e8b2c38;p=p5sagit%2Fp5-mst-13.2.git Must only use dynamic extensions in the Dynaloader test. If the extensions are static, it doesn't work :-) p4raw-id: //depot/perl@30453 --- diff --git a/ext/DynaLoader/t/DynaLoader.t b/ext/DynaLoader/t/DynaLoader.t index 262a8a8..619887c 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) {