summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-29 12:30:49 +0000
committerBodo Möller <bodo@openssl.org>1999-04-29 12:30:49 +0000
commitcc98d9b68cece257364d872a9652e22d874223b3 (patch)
tree17e2876c8943c824efe3dba02f5bf40fd72feaff
parentbf6841f5c1193d16e1f1a00730dd34f3b9db0c64 (diff)
Fix make target "install".
Submitted by: Niels Poppe Reviewed by: PR:
-rw-r--r--apps/Makefile.ssl6
-rw-r--r--tools/Makefile.ssl1
2 files changed, 4 insertions, 3 deletions
diff --git a/apps/Makefile.ssl b/apps/Makefile.ssl
index 8a128a7b80..606b206a11 100644
--- a/apps/Makefile.ssl
+++ b/apps/Makefile.ssl
@@ -93,13 +93,13 @@ install:
(echo installing $$i; \
cp $$i $(INSTALLTOP)/bin/$$i; \
chmod 755 $(INSTALLTOP)/bin/$$i ); \
- done; \
+ done;
@for i in $(SCRIPTS); \
do \
(echo installing $$i; \
cp $$i $(OPENSSLDIR)/misc/$$i; \
- chmod 755 $(INSTALLTOP)/misc/$$i ); \
- done; \
+ chmod 755 $(OPENSSLDIR)/misc/$$i ); \
+ done;
cp openssl.cnf $(OPENSSLDIR)/lib; \
chmod 644 $(OPENSSLDIR)/lib/openssl.cnf
diff --git a/tools/Makefile.ssl b/tools/Makefile.ssl
index 959d752c9f..08d4a7cc71 100644
--- a/tools/Makefile.ssl
+++ b/tools/Makefile.ssl
@@ -26,6 +26,7 @@ install:
do \
(cp $$i $(INSTALLTOP)/bin/$$i; \
chmod 755 $(INSTALLTOP)/bin/$$i ); \
+ done;
@for i in $(MISC_APPS) ; \
do \
(cp $$i $(OPENSSLTOP)/misc/$$i; \