From 3b8033f3f593ac06aaea5d050960366001ef99f0 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 27 May 2019 14:20:20 +0200 Subject: Configurations/unix-Makefile.tmpl: not -v for rm Not all Unixen know the -v option Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/9012) --- Configurations/unix-Makefile.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 2561c47..8a1ec49 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -422,7 +422,7 @@ uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev install_docs: install_man_docs install_html_docs uninstall_docs: uninstall_man_docs uninstall_html_docs - $(RM) -r -v $(DESTDIR)$(DOCDIR) + $(RM) -r $(DESTDIR)$(DOCDIR) install_ssldirs: @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs -- cgit v1.1