util/mkdef.pl, util/add-depends.pl: don't lowercase file names
[openssl.git] / util / mkdef.pl
index 327728eedaad7fc3df114f982d2cb43d2e99106f..657162b460ff82f5f528fd1ac7778e809e5e7701 100755 (executable)
@@ -247,7 +247,7 @@ $crypto.=" include/internal/o_str.h";
 $crypto.=" include/internal/err.h";
 $crypto.=" include/internal/sslconf.h";
 foreach my $f ( glob(catfile($config{sourcedir},'include/openssl/*.h')) ) {
-    my $fn = "include/openssl/" . lc(basename($f));
+    my $fn = "include/openssl/" . basename($f);
     $crypto .= " $fn" if !defined $skipthese{$fn};
 }