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/des | |
parent | Reformat warn variables for easier editing. (diff) | |
download | openssl-de72be2e5784269088cc77479f41c8aeb82fcf6b.tar.xz openssl-de72be2e5784269088cc77479f41c8aeb82fcf6b.zip |
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/des')
-rw-r--r-- | crypto/des/build.info | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/des/build.info b/crypto/des/build.info index 5fabddf182..a0ac1de148 100644 --- a/crypto/des/build.info +++ b/crypto/des/build.info @@ -14,10 +14,10 @@ BEGINRAW[Makefile] {- $builddir -}/des_enc-sparc.S: {- $sourcedir -}/asm/des_enc.m4 m4 -B 8192 {- $sourcedir -}/asm/des_enc.m4 > $@ {- $builddir -}/dest4-sparcv9.s: {- $sourcedir -}/asm/dest4-sparcv9.pl - $(PERL) {- $sourcedir -}/asm/dest4-sparcv9.pl $(CFLAGS) > $@ + CC="$(CC)" $(PERL) {- $sourcedir -}/asm/dest4-sparcv9.pl $(CFLAGS) > $@ {- $builddir -}/des-586.s: {- $sourcedir -}/asm/des-586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl {- $sourcetop -}/crypto/perlasm/cbc.pl - $(PERL) {- $sourcedir -}/asm/des-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ + CC="$(CC)" $(PERL) {- $sourcedir -}/asm/des-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ {- $builddir -}/crypt586.s: {- $sourcedir -}/asm/crypt586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl {- $sourcetop -}/crypto/perlasm/cbc.pl - $(PERL) {- $sourcedir -}/asm/crypt586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ + CC="$(CC)" $(PERL) {- $sourcedir -}/asm/crypt586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ ENDRAW[Makefile] |