Commit 22626b97 authored by Richard Levitte's avatar Richard Levitte
Browse files

With nmake, invoking $(MAKE) needs /$(MAKEFLAGS)

The slash should be there according to Microsoft documentation,
see https://msdn.microsoft.com/en-us/library/7cafx990.aspx



Fixes #5277

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5278)
parent 4af26979
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@
 sub dependmagic {
     my $target = shift;

     return "$target: build_generated\n\t\$(MAKE) depend && \$(MAKE) _$target\n_$target";
     return "$target: build_generated\n\t\$(MAKE) /\$(MAKEFLAGS) depend && \$(MAKE) /\$(MAKEFLAGS) _$target\n_$target";
 }
 '';
-}