diff options
author | Richard Levitte <levitte@openssl.org> | 2016-03-12 09:46:28 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-03-13 00:02:55 +0100 |
commit | f425f9dcffc4efa13fbdbba34c6883b038409f3f (patch) | |
tree | 908a5963482e9165992ea3f1d65664e797fd7aad /engines/build.info | |
parent | Use single quotes rather than double quotes when needed (diff) | |
download | openssl-f425f9dcffc4efa13fbdbba34c6883b038409f3f.tar.xz openssl-f425f9dcffc4efa13fbdbba34c6883b038409f3f.zip |
Add $(LIB_CFLAGS) for any build.info generator that uses $(CFLAGS)
The reason to do so is that some of the generators detect PIC flags
like -fPIC and -KPIC, and those are normally delivered in LD_CFLAGS.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'engines/build.info')
-rw-r--r-- | engines/build.info | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/build.info b/engines/build.info index 28fce1a5f4..065d4121ef 100644 --- a/engines/build.info +++ b/engines/build.info @@ -27,6 +27,6 @@ IF[{- !$disabled{"engine"} -}] INCLUDE[ossltest]={- rel2abs(catdir($builddir,"../include")) -} ../include ENDIF - GENERATE[e_padlock-x86.s]=asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) + GENERATE[e_padlock-x86.s]=asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(LIB_CFLAGS) $(PROCESSOR) GENERATE[e_padlock-x86_64.s]=asm/e_padlock-x86_64.pl $(PERLASM_SCHEME) ENDIF |