From 8390062853513e1b42cac98078db184bc6100ca7 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Thu, 22 Mar 2018 10:21:33 -0400 Subject: Fix resource files Add it to apps as well as libraries. Fix the copyright year generation. Thanks to user RTT for pointing this out. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/5704) --- Configure | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Configure') diff --git a/Configure b/Configure index 0934088..ce33f48 100755 --- a/Configure +++ b/Configure @@ -2015,6 +2015,13 @@ EOF $o = cleanfile($buildd, $o, $blddir); $unified_info{sources}->{$ddest}->{$o} = 1; $unified_info{sources}->{$o}->{$s} = 1; + } elsif ($s =~ /\.rc$/) { + # We also recognise resource files + my $o = $_; + $o =~ s/\.rc$/.res/; # Resource configuration + my $o = cleanfile($buildd, $o, $blddir); + $unified_info{sources}->{$ddest}->{$o} = 1; + $unified_info{sources}->{$o}->{$s} = 1; } else { $unified_info{sources}->{$ddest}->{$s} = 1; } -- cgit v1.1