From 00d2dd1a43fd464480090b21e1ed493813633725 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 20 May 2026 02:51:47 +0100 Subject: Depend on and capture reference to %certificates-directory. We need an explicit reference to the TLS certificates directory so we can pass it on into our tool call containers. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 588ef56..2a9997d 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ GUILE_RUN64 = guile-run64 LZIP = lzip SED = sed +CERTIFICATES_DIRECTORY = /etc/ssl/certs GUILD_FLAGS = prefix ?= /usr/local @@ -59,7 +60,7 @@ godir = $(libdir)/guile/$(guile_effective_version)/site-ccache all: $(objects) $(config_file) %.scm: %.scm.in - $(SED) -e 's|@PROJECT@|$(project)|' -e 's|@PROJECT_TITLE@|$(project_title)|' -e 's|@VERSION@|$(version)|' $< > $@ + $(SED) -e 's|@PROJECT@|$(project)|' -e 's|@PROJECT_TITLE@|$(project_title)|' -e 's|@VERSION@|$(version)|' -e 's|@CERTIFICATES_DIRECTORY@|$(CERTIFICATES_DIRECTORY)|' $< > $@ %.go: %.scm $(config_file) GUILE_AUTO_COMPILE=0 ./pre-inst-env $(GUILD) compile $(GUILD_FLAGS) -o $@ $< -- cgit 1.4.1