Commit 316fe11b authored by Richard Levitte's avatar Richard Levitte Committed by Richard Levitte
Browse files

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: default avatarPaul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/7703)

(cherry picked from commit c739e676)
parent 37b07c68
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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}});