summaryrefslogtreecommitdiffstats
path: root/apps/Makefile.ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-28 22:06:19 +0000
committerBodo Möller <bodo@openssl.org>1999-04-28 22:06:19 +0000
commitddeee82c6333f27cb85940b271c3cc4d2e940717 (patch)
tree5748590703607123721fce34581af894220747a2 /apps/Makefile.ssl
parentbcaa88342b72a0283ba1b97593f8bd4c3013311b (diff)
Install various scripts to $(OPENSSLDIR)/misc instead of $(INSTALLTOP)/bin.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'apps/Makefile.ssl')
-rw-r--r--apps/Makefile.ssl8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/Makefile.ssl b/apps/Makefile.ssl
index 5971ada4cc..8a128a7b80 100644
--- a/apps/Makefile.ssl
+++ b/apps/Makefile.ssl
@@ -88,12 +88,18 @@ files:
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
install:
- @for i in $(EXE) $(SCRIPTS); \
+ @for i in $(EXE); \
do \
(echo installing $$i; \
cp $$i $(INSTALLTOP)/bin/$$i; \
chmod 755 $(INSTALLTOP)/bin/$$i ); \
done; \
+ @for i in $(SCRIPTS); \
+ do \
+ (echo installing $$i; \
+ cp $$i $(OPENSSLDIR)/misc/$$i; \
+ chmod 755 $(INSTALLTOP)/misc/$$i ); \
+ done; \
cp openssl.cnf $(OPENSSLDIR)/lib; \
chmod 644 $(OPENSSLDIR)/lib/openssl.cnf