diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-24 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-24 02:00:00 +0200 |
commit | 0500af5556307d0a4c14a23864e9e4bccd2643d7 (patch) | |
tree | f69f157c3e49eea06924e8ecc8be51e4aaf8d414 | |
parent | 01153b632b31a5eaf1330e11f56a161309681eb4 (diff) |
Revert "build: Add missing guix-gc.timer file to binary tarball."
This reverts commit 69f6edc1a8596d2cb4c67e0435d35633af6f3cbc.
The intention is good, but nodist_systemdservice_DATA are meant to be
disposable artefacts generated from corresponding ‘.in’ files.
etc/guix-gc.timer doesn't fit that description, breaking builds:
$ make clean && make
…
make[2]: *** No rule to make target 'etc/guix-gc.timer', needed by 'all-am'. Stop.
-rw-r--r-- | nix/local.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nix/local.mk b/nix/local.mk index 61d59937e8..44a26dd2c8 100644 --- a/nix/local.mk +++ b/nix/local.mk @@ -153,9 +153,8 @@ systemdservicedir = $(libdir)/systemd/system nodist_systemdservice_DATA = \ etc/gnu-store.mount \ etc/guix-daemon.service \ - etc/guix-gc.service \ - etc/guix-gc.timer \ - etc/guix-publish.service + etc/guix-publish.service \ + etc/guix-gc.service etc/%.mount: etc/%.mount.in \ $(top_builddir)/config.status |