diff options
author | markus <> | 2002-09-04 18:46:25 +0000 |
---|---|---|
committer | markus <> | 2002-09-04 18:46:25 +0000 |
commit | 70a0eeb2dc3383eb94198ed84a863553d445b8e8 (patch) | |
tree | 915d9fb7a0ff7c1c3a38c2672501190985d3c8e9 /src/lib/libcrypto/Makefile.ssl | |
parent | 9482ba4a58b16aebf5b63997d4f5c683914c694f (diff) | |
download | openbsd-70a0eeb2dc3383eb94198ed84a863553d445b8e8.tar.gz openbsd-70a0eeb2dc3383eb94198ed84a863553d445b8e8.tar.bz2 openbsd-70a0eeb2dc3383eb94198ed84a863553d445b8e8.zip |
execute bourne shell scripts with 'sh' and not with $SHELL
Diffstat (limited to 'src/lib/libcrypto/Makefile.ssl')
-rw-r--r-- | src/lib/libcrypto/Makefile.ssl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/Makefile.ssl b/src/lib/libcrypto/Makefile.ssl index 6a52e04218..0f036167f0 100644 --- a/src/lib/libcrypto/Makefile.ssl +++ b/src/lib/libcrypto/Makefile.ssl | |||
@@ -81,11 +81,11 @@ files: | |||
81 | done; | 81 | done; |
82 | 82 | ||
83 | links: | 83 | links: |
84 | @$(SHELL) $(TOP)/util/point.sh Makefile.ssl Makefile | 84 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile |
85 | @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) | 85 | @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) |
86 | @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) | 86 | @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) |
87 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) | 87 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) |
88 | @$(SHELL) $(TOP)/util/point.sh Makefile.ssl Makefile | 88 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile |
89 | @for i in $(SDIRS); do \ | 89 | @for i in $(SDIRS); do \ |
90 | (cd $$i && echo "making links in crypto/$$i..." && \ | 90 | (cd $$i && echo "making links in crypto/$$i..." && \ |
91 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \ | 91 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \ |