summaryrefslogtreecommitdiff
path: root/crypto/sha/Makefile
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-11-12 21:49:15 +0100
committerAndy Polyakov <appro@openssl.org>2013-11-12 21:51:37 +0100
commitd1cf23ac86c05b22b8780e2c03b67230564d2d34 (patch)
treefab7c0654592fafd2f9e7bf260179bf1beb3268b /crypto/sha/Makefile
parent16bc45ba956fdf07c7cda7feda88de597569df63 (diff)
downloadopenssl-new-d1cf23ac86c05b22b8780e2c03b67230564d2d34.tar.gz
Make Makefiles OSF-make-friendly.
PR: 3165
Diffstat (limited to 'crypto/sha/Makefile')
-rw-r--r--crypto/sha/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/sha/Makefile b/crypto/sha/Makefile
index 63fba69869..64eab6c4a4 100644
--- a/crypto/sha/Makefile
+++ b/crypto/sha/Makefile
@@ -60,7 +60,9 @@ sha256-armv4.S: asm/sha256-armv4.pl
$(PERL) $< $(PERLASM_SCHEME) $@
sha1-alpha.s: asm/sha1-alpha.pl
- $(PERL) $< | $(CC) -E - | tee $@ > /dev/null
+ (preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
+ $(PERL) asm/sha1-alpha.pl > $$preproc && \
+ $(CC) -E $$preproc > $@ && rm $$preproc)
# Solaris make has to be explicitly told
sha1-x86_64.s: asm/sha1-x86_64.pl; $(PERL) asm/sha1-x86_64.pl $(PERLASM_SCHEME) > $@