diff options
author | Richard Levitte <levitte@openssl.org> | 2017-08-01 22:43:56 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-08-15 11:31:18 +0200 |
commit | 8d2214c0a49584044d96b80e846ac8f6df35a0ad (patch) | |
tree | cfad073ef328f3983cece8b214a230a3819b6388 /util/process_docs.pl | |
parent | Consolidate the locations where we have our internal perl modules (diff) | |
download | openssl-8d2214c0a49584044d96b80e846ac8f6df35a0ad.tar.xz openssl-8d2214c0a49584044d96b80e846ac8f6df35a0ad.zip |
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 '')
-rw-r--r-- | util/process_docs.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/process_docs.pl b/util/process_docs.pl index 49176ad30b..2b7f3227d3 100644 --- a/util/process_docs.pl +++ b/util/process_docs.pl @@ -13,7 +13,9 @@ use File::Spec::Functions; use File::Basename; use File::Copy; use File::Path; -use if $^O ne "VMS", 'File::Glob' => qw/:bsd_glob/; +use FindBin; +use lib "$FindBin::Bin/perl"; +use OpenSSL::Glob; use Getopt::Long; use Pod::Usage; |