aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/Makefile.ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-12-27 15:00:24 +0000
committerRichard Levitte <levitte@openssl.org>2003-12-27 15:00:24 +0000
commitcc056d63958d8963e0a4b3ef03f06db72ca36b77 (patch)
tree98299b22d43ced08a356fa253e27183e310dff65 /crypto/Makefile.ssl
parent394178c94cd3b969575061d067ea57f6a8b2dd21 (diff)
downloadopenssl-cc056d63958d8963e0a4b3ef03f06db72ca36b77.tar.gz
Use sh explicitely to run point.sh
This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
Diffstat (limited to 'crypto/Makefile.ssl')
-rw-r--r--crypto/Makefile.ssl4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl
index 144b206e92..b9951a4600 100644
--- a/crypto/Makefile.ssl
+++ b/crypto/Makefile.ssl
@@ -81,11 +81,11 @@ files:
done;
links:
- @$(TOP)/util/point.sh Makefile.ssl Makefile
+ @sh $(TOP)/util/point.sh Makefile.ssl Makefile
@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
- @$(TOP)/util/point.sh Makefile.ssl Makefile
+ @sh $(TOP)/util/point.sh Makefile.ssl Makefile
@for i in $(SDIRS); do \
(cd $$i && echo "making links in crypto/$$i..." && \
$(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 ); \