Blame SOURCES/openssl-1.0.1c-perlfind.patch

96a864
diff -up openssl-1.0.1c/util/perlpath.pl.perlfind openssl-1.0.1c/util/perlpath.pl
96a864
--- openssl-1.0.1c/util/perlpath.pl.perlfind	2012-07-11 22:57:33.000000000 +0200
96a864
+++ openssl-1.0.1c/util/perlpath.pl	2012-07-12 00:31:12.102156275 +0200
96a864
@@ -4,10 +4,10 @@
96a864
 # line in all scripts that rely on perl.
96a864
 #
96a864
 
96a864
-require "find.pl";
96a864
+use File::Find;
96a864
 
96a864
 $#ARGV == 0 || print STDERR "usage: perlpath newpath  (eg /usr/bin)\n";
96a864
-&find(".");
96a864
+find(\&wanted, ".");
96a864
 
96a864
 sub wanted
96a864
 	{