diff options
author | Bodo Möller <bodo@openssl.org> | 1999-04-29 00:06:19 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-04-29 00:06:19 +0200 |
commit | ddeee82c6333f27cb85940b271c3cc4d2e940717 (patch) | |
tree | 5748590703607123721fce34581af894220747a2 /tools | |
parent | Linux shared libraries (now in Makefile.ssl). (diff) | |
download | openssl-ddeee82c6333f27cb85940b271c3cc4d2e940717.tar.xz openssl-ddeee82c6333f27cb85940b271c3cc4d2e940717.zip |
Install various scripts to $(OPENSSLDIR)/misc instead of $(INSTALLTOP)/bin.
Submitted by:
Reviewed by:
PR:
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.ssl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/Makefile.ssl b/tools/Makefile.ssl index f12f85adb9..959d752c9f 100644 --- a/tools/Makefile.ssl +++ b/tools/Makefile.ssl @@ -16,7 +16,8 @@ CFLAGS= $(INCLUDES) $(CFLAG) GENERAL=Makefile.ssl TEST= -APPS= c_hash c_info c_issuer c_name c_rehash +APPS= c_rehash +MISC_APPS= c_hash c_info c_issuer c_name all: @@ -25,6 +26,10 @@ install: do \ (cp $$i $(INSTALLTOP)/bin/$$i; \ chmod 755 $(INSTALLTOP)/bin/$$i ); \ + @for i in $(MISC_APPS) ; \ + do \ + (cp $$i $(OPENSSLTOP)/misc/$$i; \ + chmod 755 $(OPENSSLTOP)/misc/$$i ); \ done; files: |