Perl: Use File::Glob::bsd_glob rather than File::Glob::glob
authorRichard Levitte <levitte@openssl.org>
Fri, 28 Jul 2017 11:38:03 +0000 (13:38 +0200)
committerRichard Levitte <levitte@openssl.org>
Fri, 28 Jul 2017 12:45:17 +0000 (14:45 +0200)
commit102c9e1296b656c4049c1110abc8a52b43bd0dcf
treee059871601fc3f50546ede397ba089f6f4590aff
parent735e350555a7f965ccb366afdabe569651d19d82
Perl: Use File::Glob::bsd_glob rather than File::Glob::glob

File::Glob::glob is deprecated, it's use generates this kind of
message:

    File::Glob::glob() will disappear in perl 5.30. Use File::Glob::bsd_glob() instead. at ../master/Configure line 277.

So instead, use a construction that makes the caller glob() use
File::Glob::bsd_glob().

Note that we're still excluding VMS, as it's directory specs use '['
and ']', which have a different meaning with bsd_glob and would need
some extra quoting.  This might change, but later.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4040)
Configure
test/build.info
test/recipes/15-test_ecparam.t
test/recipes/40-test_rehash.t
test/recipes/80-test_ssl_new.t
test/recipes/99-test_fuzz.t
test/run_tests.pl
util/mkdef.pl
util/process_docs.pl