mirror of https://github.com/openssl/openssl.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 <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/7703)
This commit is contained in:
parent
900fd8f375
commit
c739e676eb
|
@ -847,7 +847,7 @@ EOF
|
||||||
|
|
||||||
sub src2obj {
|
sub src2obj {
|
||||||
my %args = @_;
|
my %args = @_;
|
||||||
my @srcs = map { (my $x = $_) =~ s/\.s$/.asm/; $x
|
my @srcs = map { (my $x = $_) =~ s/\.[sS]$/.asm/; $x
|
||||||
} ( @{$args{srcs}} );
|
} ( @{$args{srcs}} );
|
||||||
(my $obj = $args{obj}) =~ s|\.o$||;
|
(my $obj = $args{obj}) =~ s|\.o$||;
|
||||||
my $deps = join(", -\n\t\t", @srcs, @{$args{deps}});
|
my $deps = join(", -\n\t\t", @srcs, @{$args{deps}});
|
||||||
|
|
Loading…
Reference in New Issue