From 17928cf9f91af72cd5a83480d43cd278aff1f93a Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 15 Mar 2018 20:37:39 +0100 Subject: [PATCH] util/add-depends.pl: add the possibility for debug printouts Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/5631) --- util/add-depends.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/util/add-depends.pl b/util/add-depends.pl index 31996c4edd..67b69b0ac7 100644 --- a/util/add-depends.pl +++ b/util/add-depends.pl @@ -19,6 +19,7 @@ use File::Compare qw(compare_text); # data. This doesn't affect the mtime field, so we're not losing anything... ${^WIN32_SLOPPY_STAT} = 1; +my $debug = $ENV{ADD_DEPENDS_DEBUG}; my $buildfile = $config{build_file}; my $build_mtime = (stat($buildfile))[9]; my $rebuild = 0; -- 2.34.1