diff options
author | Xinglu Chen <public@yoctocell.xyz> | 2021-09-28 17:27:32 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-01 08:58:06 +0000 |
commit | 8579304e8f4deaca33b816b2d56af1d814a03bde (patch) | |
tree | 41a2969820a947bec6d7c3a06d95e634cf0ac394 /nix | |
parent | f80ce9b6b39b67b7326a9332bf058edc1484e199 (diff) | |
download | guix-8579304e8f4deaca33b816b2d56af1d814a03bde.tar.gz |
build: Don’t delete ‘guix-gc.timer’ file.
Without this invoking ‘make clean’ would remove ‘guix-gc.timer’, and ‘make’ would fail with. make[2]: *** No rule to make target 'etc/guix-gc.timer', needed by 'all-am'. Stop. * nix/local.mk (nodist_systemdservice_DATA): Remove ‘guix-gc.timer’.
Diffstat (limited to 'nix')
-rw-r--r-- | nix/local.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nix/local.mk b/nix/local.mk index d6b4d7faeb..44a26dd2c8 100644 --- a/nix/local.mk +++ b/nix/local.mk @@ -154,8 +154,7 @@ nodist_systemdservice_DATA = \ etc/gnu-store.mount \ etc/guix-daemon.service \ etc/guix-publish.service \ - etc/guix-gc.service \ - etc/guix-gc.timer + etc/guix-gc.service etc/%.mount: etc/%.mount.in \ $(top_builddir)/config.status |