aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2026-09-07 17:49:56 +0200
committerTheo Buehler <tb@openbsd.org>2026-09-07 17:49:56 +0200
commite3b58ae7ab55f4be4e55f9dc923fa356825b701c (patch)
tree8d4f67d0ce290dbcc054bed22bc4e3669572e593
parent7540c7413b2a421c1bbb8e0b98456237d3896b89 (diff)
parent7dc8b8db25368a5f65ce46b2a67e40cb7a38f8e4 (diff)
downloadportable-e3b58ae7ab55f4be4e55f9dc923fa356825b701c.tar.gz
portable-e3b58ae7ab55f4be4e55f9dc923fa356825b701c.tar.bz2
portable-e3b58ae7ab55f4be4e55f9dc923fa356825b701c.zip
Land #1378 - fix overwrite guard in openssldir install hook
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
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:
40 fi; \ 40 fi; \
41 mkdir -p "$$OPENSSLDIR/certs"; \ 41 mkdir -p "$$OPENSSLDIR/certs"; \
42 for i in cert.pem openssl.cnf x509v3.cnf; do \ 42 for i in cert.pem openssl.cnf x509v3.cnf; do \
43 if [ ! -f "$$OPENSSLDIR/$i" ]; then \ 43 if [ ! -f "$$OPENSSLDIR/$$i" ]; then \
44 $(INSTALL) -m 644 "$(srcdir)/$$i" "$$OPENSSLDIR/$$i"; \ 44 $(INSTALL) -m 644 "$(srcdir)/$$i" "$$OPENSSLDIR/$$i"; \
45 else \ 45 else \
46 echo " $$OPENSSLDIR/$$i already exists, install will not overwrite"; \ 46 echo " $$OPENSSLDIR/$$i already exists, install will not overwrite"; \