aboutsummaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2002-10-18 19:02:18 +0000
committerGeoff Thorpe <geoff@openssl.org>2002-10-18 19:02:18 +0000
commitf6661d391ce9e6c554d9bd21dda9b134462fe9d2 (patch)
tree36102806b64801318b4ee1f1b615c0f8b540e37e /engines
parent284b216b3a8afe6cf788190d524ca3f156672fe1 (diff)
downloadopenssl-f6661d391ce9e6c554d9bd21dda9b134462fe9d2.tar.gz
The loop variable is 'l', not 'i'.
Diffstat (limited to 'engines')
-rw-r--r--engines/Makefile.ssl8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/Makefile.ssl b/engines/Makefile.ssl
index afa70b7131..7ebbe51c7f 100644
--- a/engines/Makefile.ssl
+++ b/engines/Makefile.ssl
@@ -92,10 +92,10 @@ install:
@if [ -n "$(SHARED_LIBS)" ]; then \
set -e; \
for l in $(LIBNAMES); do \
- ( echo installing $$i; \
- cp lib$$i.so $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$i.so.new; \
- chmod 555 $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$i.so.new; \
- mv $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$i.so.new $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$i.so ); \
+ ( echo installing $$l; \
+ cp lib$$l.so $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so.new; \
+ chmod 555 $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so.new; \
+ mv $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so.new $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so ); \
done; \
fi