diff options
author | Richard Levitte <levitte@openssl.org> | 2016-02-13 19:15:52 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-13 19:21:36 +0100 |
commit | de72be2e5784269088cc77479f41c8aeb82fcf6b (patch) | |
tree | dc143462d2820194072d54aee3a93052f18d1790 /crypto/cast | |
parent | 8bccbce52ae9914306262284d245304bad402efc (diff) | |
download | openssl-new-de72be2e5784269088cc77479f41c8aeb82fcf6b.tar.gz |
Pass $(CC) to perlasm scripts via the environment
It seems that on some platforms, the perlasm scripts call the C
compiler for certain checks. These scripts need the environment
variable CC to have the C compiler command.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/cast')
-rw-r--r-- | crypto/cast/build.info | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cast/build.info b/crypto/cast/build.info index 6c32fb122e..84c100e1d3 100644 --- a/crypto/cast/build.info +++ b/crypto/cast/build.info @@ -6,5 +6,5 @@ BEGINRAW[Makefile] ##### CAST assembler implementations {- $builddir -}/cast-586.s: {- $sourcedir -}/asm/cast-586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl {- $sourcetop -}/crypto/perlasm/cbc.pl - $(PERL) {- $sourcedir -}/asm/cast-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ + CC="$(CC)" $(PERL) {- $sourcedir -}/asm/cast-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ ENDRAW[Makefile] |