diff options
author | Geoff Thorpe <geoff@openssl.org> | 2004-06-01 03:18:58 +0000 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2004-06-01 03:18:58 +0000 |
commit | 9081980565988d351582998148782a8c91a55e93 (patch) | |
tree | fa4e3068e81ec6f22d42877968ba7371e5053d33 /engines/Makefile.ssl | |
parent | 393b704d282909dff28bdca80e2d8a1d404086f4 (diff) | |
download | openssl-new-9081980565988d351582998148782a8c91a55e93.tar.gz |
This fixes the installation target for dynamic engines, which was trying to
install to a different location than it had created. (BTW, VMS will need a
matching fix in eng_list.c.) Note, these aren't ssl-specific, so I'm
putting "engines/" into the libs directory rather than at the "--prefix"
level or inside "ssl/".
Diffstat (limited to 'engines/Makefile.ssl')
-rw-r--r-- | engines/Makefile.ssl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/Makefile.ssl b/engines/Makefile.ssl index 8c383f9599..8ae81f33ce 100644 --- a/engines/Makefile.ssl +++ b/engines/Makefile.ssl @@ -99,9 +99,9 @@ install: set -e; \ for l in $(LIBNAMES); do \ ( 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 -f $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so.new $(INSTALL_PREFIX)$(OPENSSLDIR)/engines/lib$$l.so ); \ + cp lib$$l.so $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/lib$$l.so.new; \ + chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/lib$$l.so.new; \ + mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/lib$$l.so.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/lib$$l.so ); \ done; \ fi |