diff options
Diffstat (limited to 'openssl/crypto/Makefile')
-rw-r--r-- | openssl/crypto/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openssl/crypto/Makefile b/openssl/crypto/Makefile index 947dd5d44..a90809b2b 100644 --- a/openssl/crypto/Makefile +++ b/openssl/crypto/Makefile @@ -77,7 +77,9 @@ ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@ ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@ pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@ alphacpuid.s: alphacpuid.pl - $(PERL) $< | $(CC) -E - | tee $@ > /dev/null + (preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \ + $(PERL) alphacpuid.pl > $$preproc && \ + $(CC) -E $$preproc > $@ && rm $$preproc) testapps: [ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \ |