From 5b14d5b5a0271ec0063d57b90f7d0b14a87c94d2 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 4 Mar 2016 15:36:07 +0100 Subject: Make sure the effect of "pic" / "no-pic" is used with assembler compilations Before the 'Introduce the "pic" / "no-pic" config option' commit, the shared_cflag value for the chosen config would be part of the make variable CFLAG, which got replicated into CFLAGS and ASFLAGS. Since said commit, the shared_cflag value has become a make variable of its own, SHARED_CFLAG (which is left empty in a "no-pic" build). However, ASFLAGS was forgotten. That's what's corrected with this change. Reviewed-by: Andy Polyakov --- crypto/rc4/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/rc4') diff --git a/crypto/rc4/Makefile.in b/crypto/rc4/Makefile.in index 00e39ecb36..0d4952c9ff 100644 --- a/crypto/rc4/Makefile.in +++ b/crypto/rc4/Makefile.in @@ -13,7 +13,7 @@ AR= ar r RC4_ENC=rc4_enc.o rc4_skey.o CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG) -ASFLAGS= $(INCLUDES) $(ASFLAG) +ASFLAGS= $(INCLUDES) $(ASFLAG) $(SHARED_CFLAG) AFLAGS= $(ASFLAGS) GENERAL=Makefile -- cgit v1.2.3