aboutsummaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-08-01 22:43:56 +0200
committerRichard Levitte <levitte@openssl.org>2017-08-15 11:31:18 +0200
commit8d2214c0a49584044d96b80e846ac8f6df35a0ad (patch)
treecfad073ef328f3983cece8b214a230a3819b6388 /util/mkdef.pl
parentcb6afcd6ee0c0d66fae62e13fe5966171992f81c (diff)
downloadopenssl-8d2214c0a49584044d96b80e846ac8f6df35a0ad.tar.gz
File::Glob option ':bsd_glob' doesn't work everywhere, replace w/ a wrapper
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4069)
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 7a85e80082..d7baf8aa05 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -49,7 +49,9 @@ use lib ".";
use configdata;
use File::Spec::Functions;
use File::Basename;
-use if $^O ne "VMS", 'File::Glob' => qw/:bsd_glob/;
+use FindBin;
+use lib "$FindBin::Bin/perl";
+use OpenSSL::Glob;
my $debug=0;