aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-03-06 14:36:11 +0100
committerAndy Polyakov <appro@openssl.org>2016-03-07 15:00:20 +0100
commit3ed1839dc3ad285ca83609007a18911d3c7bfdbe (patch)
treeadc706f2a2a376b9e2ef39ad5a57b09c355b2873
parentadc4f1fc25b2cac90076f1e1695b05b7aeeae501 (diff)
downloadopenssl-3ed1839dc3ad285ca83609007a18911d3c7bfdbe.tar.gz
Makefile.in: populate [PLIB_]LDFLAG even with $target{} settings.
RT#4373 Reviewed-by: Richard Levitte <levitte@openssl.org>
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 892a20866e..e7b3f99650 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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} -}