--- perl_20760/lib/ExtUtils/t/Manifest.t	2003-08-18 12:48:39.000000000 -0400
+++ perl/lib/ExtUtils/t/Manifest.t	2003-08-18 15:41:28.000000000 -0400
@@ -204,9 +204,16 @@
     chmod( 0400, 'MANIFEST' );
     skip "Can't make MANIFEST read-only", 2 if -w 'MANIFEST';
 
-    eval {
-        maniadd({ 'META.yml' => 'hock' });
-    };
+    if ( $^O eq 'VMS' ) {
+        eval {
+            maniadd({ 'meta.yml' => 'hock' });
+        };
+    }
+    else {
+        eval {
+            maniadd({ 'META.yml' => 'hock' });
+        };
+    }
     is( $@, '',  "maniadd() won't open MANIFEST if it doesn't need to" );
 
     eval {
