Home | History | Annotate | Download | only in Configurations

Lines Matching refs:OPENSSLDIR

305 # Do not edit these manually. Use Configure with --prefix or --openssldir
307 INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
311 OPENSSLDIR={- #
312 # The logic here is that if no --openssldir was given,
313 # OPENSSLDIR will get the value from $prefix plus "/ssl".
314 # If --openssldir was given and the value is an absolute
315 # path, OPENSSLDIR will get its value without change.
316 # If the value from --openssldir is a relative path,
317 # OPENSSLDIR will get $prefix with the --openssldir
321 our $openssldir =
322 $config{openssldir} ?
323 (file_name_is_absolute($config{openssldir}) ?
324 $config{openssldir}
325 : catdir($prefix, $config{openssldir}))
327 $openssldir -}
452 'OPENSSLDIR="\"$(OPENSSLDIR)\""',
681 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)"
689 @$(ECHO) "install $(INSTALL_FIPSMODULECONF) -> $(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
690 @cp $(INSTALL_FIPSMODULECONF) "$(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
694 $(RM) "$(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
707 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/certs"
708 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/private"
709 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/misc"
715 $(ECHO) "install $$x1 -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
716 cp $$x1 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new"; \
717 chmod 755 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new"; \
718 mv -f "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new" \
719 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
723 $(ECHO) "copy $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
724 cp "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn" "$(DESTDIR)$(OPENSSLDIR)/misc/$$ln"; \
727 $(ECHO) "link $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
728 ln -sf $$fn "$(DESTDIR)$(OPENSSLDIR)/misc/$$ln"; \
732 @$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
733 @cp $(SRCDIR)/apps/openssl.cnf "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new"
734 @chmod 644 "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new"
735 @mv -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new" "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
736 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
737 $(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
738 cp $(SRCDIR)/apps/openssl.cnf "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
739 chmod 644 "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
741 @$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
742 @cp $(SRCDIR)/apps/ct_log_list.cnf "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new"
743 @chmod 644 "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new"
744 @mv -f "$(DESTDIR)$(OPENSSLDIROPENSSLDIR)/ct_log_list.cnf.dist"
745 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
746 $(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
747 cp $(SRCDIR)/apps/ct_log_list.cnf "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
748 chmod 644 "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \