From 102c9e1296b656c4049c1110abc8a52b43bd0dcf Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 28 Jul 2017 13:38:03 +0200 Subject: 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 (Merged from https://github.com/openssl/openssl/pull/4040) --- test/build.info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/build.info') diff --git a/test/build.info b/test/build.info index 2e8775e..a73e6ca 100644 --- a/test/build.info +++ b/test/build.info @@ -450,7 +450,7 @@ ENDIF {- use File::Spec::Functions; use File::Basename; - use if $^O ne "VMS", 'File::Glob' => qw/glob/; + use if $^O ne "VMS", 'File::Glob' => qw/:bsd_glob/; my @nogo_headers = ( "asn1_mac.h", "__decc_include_prologue.h", -- cgit v1.1