Lines Matching refs:OPENSSLDIR
276 # Do not edit these manually. Use Configure with --prefix or --openssldir
278 INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
282 OPENSSLDIR={- #
283 # The logic here is that if no --openssldir was given,
284 # OPENSSLDIR will get the value from $prefix plus "/ssl".
285 # If --openssldir was given and the value is an absolute
286 # path, OPENSSLDIR will get its value without change.
287 # If the value from --openssldir is a relative path,
288 # OPENSSLDIR will get $prefix with the --openssldir
292 our $openssldir =
293 $config{openssldir} ?
294 (file_name_is_absolute($config{openssldir}) ?
295 $config{openssldir}
296 : catdir($prefix, $config{openssldir}))
298 $openssldir -}
411 'OPENSSLDIR="\"$(OPENSSLDIR)\""',
624 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)"
632 @$(ECHO) "install $(INSTALL_FIPSMODULECONF) -> $(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
633 @cp $(INSTALL_FIPSMODULECONF) "$(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
637 $(RM) "$(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
650 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/certs"
651 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/private"
652 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/misc"
658 $(ECHO) "install $$x1 -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
659 cp $$x1 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new"; \
660 chmod 755 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new"; \
661 mv -f "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new" \
662 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
666 $(ECHO) "copy $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
667 cp "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn" "$(DESTDIR)$(OPENSSLDIR)/misc/$$ln"; \
670 $(ECHO) "link $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
671 ln -sf $$fn "$(DESTDIR)$(OPENSSLDIR)/misc/$$ln"; \
675 @$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
676 @cp $(SRCDIR)/apps/openssl.cnf "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new"
677 @chmod 644 "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new"
678 @mv -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new" "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
679 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
680 $(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
681 cp $(SRCDIR)/apps/openssl.cnf "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
682 chmod 644 "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
684 @$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
685 @cp $(SRCDIR)/apps/ct_log_list.cnf "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new"
686 @chmod 644 "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new"
687 @mv -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new" "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
688 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
689 $(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
690 cp $(SRCDIR)/apps/ct_log_list.cnf "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
691 chmod 644 "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \