Ryan Fox
fadd1cf250
What can I say? I need weak ciphers! Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Ryan Fox <flewkey@2a03.party>
22 lines
515 B
Diff
22 lines
515 B
Diff
https://github.com/openssl/openssl/issues/7679
|
|
|
|
--- a/Configurations/unix-Makefile.tmpl
|
|
+++ b/Configurations/unix-Makefile.tmpl
|
|
@@ -77,8 +77,14 @@
|
|
# to. You're welcome.
|
|
sub dependmagic {
|
|
my $target = shift;
|
|
-
|
|
- return "$target: build_generated\n\t\$(MAKE) depend && \$(MAKE) _$target\n_$target";
|
|
+ my $magic = <<"_____";
|
|
+$target: build_generated depend
|
|
+ \$(MAKE) _$target
|
|
+_$target
|
|
+_____
|
|
+ # Remove line ending
|
|
+ $magic =~ s|\R$||;
|
|
+ return $magic;
|
|
}
|
|
'';
|
|
-}
|