about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorArun Isaac2026-05-20 02:51:47 +0100
committerArun Isaac2026-05-20 02:53:09 +0100
commit00d2dd1a43fd464480090b21e1ed493813633725 (patch)
tree2643dd2bd150f86a9bc0326246d97788b83c94c5 /Makefile
parent73ea0f4397ed2efe58dd3e2f11b9fa187fc5497a (diff)
downloadkaagum-00d2dd1a43fd464480090b21e1ed493813633725.tar.gz
kaagum-00d2dd1a43fd464480090b21e1ed493813633725.tar.lz
kaagum-00d2dd1a43fd464480090b21e1ed493813633725.zip
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
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 $@ $<