From 1314c344ac3f5d9e41bf75b166383a2e1f7419be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= Date: Thu, 29 Apr 1999 12:46:59 +0000 Subject: Obey $(PERL) when running util/mklink.pl. Submitted by: Reviewed by: PR: --- Configure | 6 +++++- Makefile.org | 4 ++-- crypto/Makefile.ssl | 6 +++--- crypto/asn1/Makefile.ssl | 6 +++--- crypto/bf/Makefile.ssl | 6 +++--- crypto/bio/Makefile.ssl | 6 +++--- crypto/bn/Makefile.ssl | 6 +++--- crypto/buffer/Makefile.ssl | 6 +++--- crypto/cast/Makefile.ssl | 6 +++--- crypto/comp/Makefile.ssl | 6 +++--- crypto/conf/Makefile.ssl | 6 +++--- crypto/des/Makefile.ssl | 6 +++--- crypto/dh/Makefile.ssl | 6 +++--- crypto/dsa/Makefile.ssl | 6 +++--- crypto/err/Makefile.ssl | 6 +++--- crypto/evp/Makefile.ssl | 6 +++--- crypto/hmac/Makefile.ssl | 6 +++--- crypto/idea/Makefile.ssl | 6 +++--- crypto/lhash/Makefile.ssl | 6 +++--- crypto/md2/Makefile.ssl | 6 +++--- crypto/md5/Makefile.ssl | 6 +++--- crypto/mdc2/Makefile.ssl | 6 +++--- crypto/objects/Makefile.ssl | 6 +++--- crypto/pem/Makefile.ssl | 6 +++--- crypto/pkcs12/Makefile.ssl | 6 +++--- crypto/pkcs7/Makefile.ssl | 6 +++--- crypto/rand/Makefile.ssl | 6 +++--- crypto/rc2/Makefile.ssl | 6 +++--- crypto/rc4/Makefile.ssl | 6 +++--- crypto/rc5/Makefile.ssl | 6 +++--- crypto/ripemd/Makefile.ssl | 6 +++--- crypto/rsa/Makefile.ssl | 6 +++--- crypto/sha/Makefile.ssl | 6 +++--- crypto/stack/Makefile.ssl | 6 +++--- crypto/txt_db/Makefile.ssl | 6 +++--- crypto/x509/Makefile.ssl | 6 +++--- crypto/x509v3/Makefile.ssl | 6 +++--- rsaref/Makefile.ssl | 6 +++--- ssl/Makefile.ssl | 6 +++--- 39 files changed, 118 insertions(+), 114 deletions(-) diff --git a/Configure b/Configure index 3c720c3a87..b43707929e 100755 --- a/Configure +++ b/Configure @@ -583,7 +583,11 @@ if($IsWindows) { printf OUT "#define DATE \"%s\"\n", scalar gmtime(); close(OUT); } else { - (system 'make -f Makefile.ssl links') == 0 or exit $?; + if ( $perl =~ /./ ) { + (system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $?; + } else { + (system 'make -f Makefile.ssl links') == 0 or exit $?; + } (system 'make depend') == 0 or exit $? if $depflags ne ""; &dofile("tools/c_rehash",$openssldir,'^DIR=', 'DIR=%s',); &dofile("util/mk1mf.pl",$openssldir, diff --git a/Makefile.org b/Makefile.org index ad8351fa7f..33f81de54e 100644 --- a/Makefile.org +++ b/Makefile.org @@ -239,10 +239,10 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile @-mkdir -p include/openssl 2>/dev/null - @$(TOP)/util/mklink.pl include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER) @for i in $(DIRS); do \ (cd $$i && echo "making links in $$i..." && \ - $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' links ) || exit 1; \ + $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PERL='${PERL}' links ) || exit 1; \ done; @(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs) diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl index 6122415363..1699000e59 100644 --- a/crypto/Makefile.ssl +++ b/crypto/Makefile.ssl @@ -67,9 +67,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../test $(TEST) - @$(TOP)/util/mklink.pl ../apps $(APPS) + @$(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 @for i in $(SDIRS); do \ (cd $$i; echo "making links in crypto/$$i..."; \ diff --git a/crypto/asn1/Makefile.ssl b/crypto/asn1/Makefile.ssl index 7f6433ebf3..ca58b47fa8 100644 --- a/crypto/asn1/Makefile.ssl +++ b/crypto/asn1/Makefile.ssl @@ -81,9 +81,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/bf/Makefile.ssl b/crypto/bf/Makefile.ssl index 34d5dd7c82..4627425def 100644 --- a/crypto/bf/Makefile.ssl +++ b/crypto/bf/Makefile.ssl @@ -71,9 +71,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/bio/Makefile.ssl b/crypto/bio/Makefile.ssl index daaeeda47f..9193b06a1b 100644 --- a/crypto/bio/Makefile.ssl +++ b/crypto/bio/Makefile.ssl @@ -53,9 +53,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER); \ diff --git a/crypto/bn/Makefile.ssl b/crypto/bn/Makefile.ssl index 521381f0d4..59506f7f35 100644 --- a/crypto/bn/Makefile.ssl +++ b/crypto/bn/Makefile.ssl @@ -112,9 +112,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/buffer/Makefile.ssl b/crypto/buffer/Makefile.ssl index ba579a4269..298a30f08b 100644 --- a/crypto/buffer/Makefile.ssl +++ b/crypto/buffer/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/cast/Makefile.ssl b/crypto/cast/Makefile.ssl index e867b11b6e..df4a8f6df4 100644 --- a/crypto/cast/Makefile.ssl +++ b/crypto/cast/Makefile.ssl @@ -74,9 +74,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/comp/Makefile.ssl b/crypto/comp/Makefile.ssl index 603ffa562b..4927a1d820 100644 --- a/crypto/comp/Makefile.ssl +++ b/crypto/comp/Makefile.ssl @@ -48,9 +48,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/conf/Makefile.ssl b/crypto/conf/Makefile.ssl index 528587a545..c134a3503a 100644 --- a/crypto/conf/Makefile.ssl +++ b/crypto/conf/Makefile.ssl @@ -46,9 +46,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/des/Makefile.ssl b/crypto/des/Makefile.ssl index 73af61ac86..f709906c78 100644 --- a/crypto/des/Makefile.ssl +++ b/crypto/des/Makefile.ssl @@ -101,9 +101,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile @$(TOP)/util/point.sh ../../perlasm asm/perlasm - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: installs diff --git a/crypto/dh/Makefile.ssl b/crypto/dh/Makefile.ssl index c95701c3f1..01391d6716 100644 --- a/crypto/dh/Makefile.ssl +++ b/crypto/dh/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/dsa/Makefile.ssl b/crypto/dsa/Makefile.ssl index d060c03cc4..e4fa42026b 100644 --- a/crypto/dsa/Makefile.ssl +++ b/crypto/dsa/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/err/Makefile.ssl b/crypto/err/Makefile.ssl index a77690f9d3..2d92aed72b 100644 --- a/crypto/err/Makefile.ssl +++ b/crypto/err/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/evp/Makefile.ssl b/crypto/evp/Makefile.ssl index 9f6eae8997..237f4c2471 100644 --- a/crypto/evp/Makefile.ssl +++ b/crypto/evp/Makefile.ssl @@ -72,9 +72,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/hmac/Makefile.ssl b/crypto/hmac/Makefile.ssl index 71f171c49a..b1f87764f1 100644 --- a/crypto/hmac/Makefile.ssl +++ b/crypto/hmac/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/idea/Makefile.ssl b/crypto/idea/Makefile.ssl index e996908e32..99103c4ddf 100644 --- a/crypto/idea/Makefile.ssl +++ b/crypto/idea/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/lhash/Makefile.ssl b/crypto/lhash/Makefile.ssl index 6e379f8716..33e4739174 100644 --- a/crypto/lhash/Makefile.ssl +++ b/crypto/lhash/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/md2/Makefile.ssl b/crypto/md2/Makefile.ssl index 8a9d8a2b6f..ec23630c5f 100644 --- a/crypto/md2/Makefile.ssl +++ b/crypto/md2/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/md5/Makefile.ssl b/crypto/md5/Makefile.ssl index c043ad8744..ea03dabb22 100644 --- a/crypto/md5/Makefile.ssl +++ b/crypto/md5/Makefile.ssl @@ -69,9 +69,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/mdc2/Makefile.ssl b/crypto/mdc2/Makefile.ssl index 3e09ac5b30..dbc1b9d28b 100644 --- a/crypto/mdc2/Makefile.ssl +++ b/crypto/mdc2/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/objects/Makefile.ssl b/crypto/objects/Makefile.ssl index 30078a333d..9e9595e78c 100644 --- a/crypto/objects/Makefile.ssl +++ b/crypto/objects/Makefile.ssl @@ -48,9 +48,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/pem/Makefile.ssl b/crypto/pem/Makefile.ssl index 6ceeb7c8d6..0742a0ce85 100644 --- a/crypto/pem/Makefile.ssl +++ b/crypto/pem/Makefile.ssl @@ -46,9 +46,9 @@ files: links: $(EXHEADER) @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/pkcs12/Makefile.ssl b/crypto/pkcs12/Makefile.ssl index 0de3097b06..f1c4eaed8e 100644 --- a/crypto/pkcs12/Makefile.ssl +++ b/crypto/pkcs12/Makefile.ssl @@ -51,9 +51,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/pkcs7/Makefile.ssl b/crypto/pkcs7/Makefile.ssl index dab776b14c..accb1abdbc 100644 --- a/crypto/pkcs7/Makefile.ssl +++ b/crypto/pkcs7/Makefile.ssl @@ -47,9 +47,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/rand/Makefile.ssl b/crypto/rand/Makefile.ssl index bbc7bbc4cc..2d79441457 100644 --- a/crypto/rand/Makefile.ssl +++ b/crypto/rand/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/rc2/Makefile.ssl b/crypto/rc2/Makefile.ssl index 20e0b3ecdc..a536950752 100644 --- a/crypto/rc2/Makefile.ssl +++ b/crypto/rc2/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/rc4/Makefile.ssl b/crypto/rc4/Makefile.ssl index 36d85cb608..c3a699ea10 100644 --- a/crypto/rc4/Makefile.ssl +++ b/crypto/rc4/Makefile.ssl @@ -73,9 +73,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/rc5/Makefile.ssl b/crypto/rc5/Makefile.ssl index 8845fbd199..08afc7be97 100644 --- a/crypto/rc5/Makefile.ssl +++ b/crypto/rc5/Makefile.ssl @@ -71,9 +71,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/ripemd/Makefile.ssl b/crypto/ripemd/Makefile.ssl index 982ad2cd35..72738c2efb 100644 --- a/crypto/ripemd/Makefile.ssl +++ b/crypto/ripemd/Makefile.ssl @@ -69,9 +69,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/rsa/Makefile.ssl b/crypto/rsa/Makefile.ssl index 7a6547a2dc..0ae35d3373 100644 --- a/crypto/rsa/Makefile.ssl +++ b/crypto/rsa/Makefile.ssl @@ -47,9 +47,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/sha/Makefile.ssl b/crypto/sha/Makefile.ssl index a007915280..f36a9d932b 100644 --- a/crypto/sha/Makefile.ssl +++ b/crypto/sha/Makefile.ssl @@ -68,9 +68,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/stack/Makefile.ssl b/crypto/stack/Makefile.ssl index 8ce87282cf..b0291b9b8e 100644 --- a/crypto/stack/Makefile.ssl +++ b/crypto/stack/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/txt_db/Makefile.ssl b/crypto/txt_db/Makefile.ssl index cb4170bbc2..dc3af5ab2e 100644 --- a/crypto/txt_db/Makefile.ssl +++ b/crypto/txt_db/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/x509/Makefile.ssl b/crypto/x509/Makefile.ssl index 4f00ff6e86..2adfb08e00 100644 --- a/crypto/x509/Makefile.ssl +++ b/crypto/x509/Makefile.ssl @@ -55,9 +55,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/crypto/x509v3/Makefile.ssl b/crypto/x509v3/Makefile.ssl index 4e4babe13a..4540325f3b 100644 --- a/crypto/x509v3/Makefile.ssl +++ b/crypto/x509v3/Makefile.ssl @@ -49,9 +49,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../../test $(TEST) - @$(TOP)/util/mklink.pl ../../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ diff --git a/rsaref/Makefile.ssl b/rsaref/Makefile.ssl index 73922520be..28255665cf 100644 --- a/rsaref/Makefile.ssl +++ b/rsaref/Makefile.ssl @@ -45,9 +45,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../test $(TEST) - @$(TOP)/util/mklink.pl ../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) install: diff --git a/ssl/Makefile.ssl b/ssl/Makefile.ssl index e28fbb1cc7..53a367066c 100644 --- a/ssl/Makefile.ssl +++ b/ssl/Makefile.ssl @@ -61,9 +61,9 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) - @$(TOP)/util/mklink.pl ../test $(TEST) - @$(TOP)/util/mklink.pl ../apps $(APPS) + @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) + @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) + @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) install: @for i in $(EXHEADER) ; \ -- cgit v1.2.3