From 7dc8b8db25368a5f65ce46b2a67e40cb7a38f8e4 Mon Sep 17 00:00:00 2001 From: Kartik Naik Date: Fri, 4 Sep 2026 23:01:06 +0530 Subject: fix overwrite guard in the openssldir install hook Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01FF1dHqnUEhmE44ucDtFmB2 --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index eca5a27..a04d070 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,7 +40,7 @@ install-exec-hook: fi; \ mkdir -p "$$OPENSSLDIR/certs"; \ for i in cert.pem openssl.cnf x509v3.cnf; do \ - if [ ! -f "$$OPENSSLDIR/$i" ]; then \ + if [ ! -f "$$OPENSSLDIR/$$i" ]; then \ $(INSTALL) -m 644 "$(srcdir)/$$i" "$$OPENSSLDIR/$$i"; \ else \ echo " $$OPENSSLDIR/$$i already exists, install will not overwrite"; \ -- cgit v1.2.3-55-g6feb