Makefile.in: populate [PLIB_]LDFLAG even with $target{} settings.
authorAndy Polyakov <appro@openssl.org>
Sun, 6 Mar 2016 13:36:11 +0000 (14:36 +0100)
committerAndy Polyakov <appro@openssl.org>
Mon, 7 Mar 2016 14:00:20 +0000 (15:00 +0100)
RT#4373

Reviewed-by: Richard Levitte <levitte@openssl.org>
Makefile.in

index 892a20866ea2c7de9fb3b3cc13c84e063be6f6ac..e7b3f99650dad1277d6f72109728c1d4656b7162 100644 (file)
@@ -95,8 +95,8 @@ CROSS_COMPILE= {- $config{cross_compile_prefix} -}
 CC= $(CROSS_COMPILE){- $target{cc} -}
 CFLAG={- our $cflags2 = join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $target{cflags} -} {- $config{cflags} -}
 CFLAG_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -}
-LDFLAG= {- $config{lflags} -}
-PLIB_LDFLAG= {- $config{plib_lflags} -}
+LDFLAG= {- $target{lflags} -} {- $config{lflags} -}
+PLIB_LDFLAG= {- $target{plib_lflags} -} {- $config{plib_lflags} -}
 EX_LIBS= {- $target{ex_libs} -} {- $config{ex_libs} -}
 EXE_EXT= {- $target{exe_extension} -}
 ARFLAGS= {- $target{arflags} -}