diff options
| author | Arun Isaac | 2026-05-20 02:51:47 +0100 |
|---|---|---|
| committer | Arun Isaac | 2026-05-20 02:53:09 +0100 |
| commit | 00d2dd1a43fd464480090b21e1ed493813633725 (patch) | |
| tree | 2643dd2bd150f86a9bc0326246d97788b83c94c5 /Makefile | |
| parent | 73ea0f4397ed2efe58dd3e2f11b9fa187fc5497a (diff) | |
| download | kaagum-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-- | Makefile | 3 |
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 $@ $< |
