From: Richard Levitte Date: Sat, 24 Nov 2018 23:52:24 +0000 (+0100) Subject: VMS build: in descrip.mms.tmpl's src2obj, do .S -> .asm too X-Git-Tag: OpenSSL_1_1_1b~161 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=316fe11b0a0a6a3c7e3ff72129f09f3ef01bab07;p=oweals%2Fopenssl.git VMS build: in descrip.mms.tmpl's src2obj, do .S -> .asm too We only convert lowercase .s to .asm, that turned out not to be sufficient. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/7703) (cherry picked from commit c739e676ebc6e7f66aabee1ac3d2040b3103a890) --- diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl index 40876bdf88..dfea89de64 100644 --- a/Configurations/descrip.mms.tmpl +++ b/Configurations/descrip.mms.tmpl @@ -820,7 +820,7 @@ EOF sub src2obj { my %args = @_; - my @srcs = map { (my $x = $_) =~ s/\.s$/.asm/; $x + my @srcs = map { (my $x = $_) =~ s/\.[sS]$/.asm/; $x } ( @{$args{srcs}} ); (my $obj = $args{obj}) =~ s|\.o$||; my $deps = join(", -\n\t\t", @srcs, @{$args{deps}});