diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-12-20 15:13:42 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-12-20 15:21:49 +0100 |
commit | a81771f137716c62e7a44355e18ce5487ecf5301 (patch) | |
tree | c11019a04a4ef9184cc1268b2b6442a5506eb12b | |
parent | cccbc63950ad061538b1132b3dfef21794d6b780 (diff) | |
download | guix-a81771f137716c62e7a44355e18ce5487ecf5301.tar.gz |
build: Delete all the .service and .conf files upon 'make clean'. v0.12.0
* nix/local.mk (CLEANFILES): Define to add $(nodist_systemdservice_DATA) and $(nodist_upstartjob_DATA).
-rw-r--r-- | nix/local.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nix/local.mk b/nix/local.mk index ab8e798d7e..eb70d266fb 100644 --- a/nix/local.mk +++ b/nix/local.mk @@ -22,7 +22,7 @@ # BUILT_SOURCES += %D%/libstore/schema.sql.hh -CLEANFILES += $(BUILT_SOURCES) etc/guix-daemon.service etc/guix-daemon.conf +CLEANFILES += $(BUILT_SOURCES) noinst_LIBRARIES = libformat.a libutil.a libstore.a @@ -205,6 +205,10 @@ etc/guix-%.conf: etc/guix-%.conf.in \ "$<" > "$@.tmp"; \ mv "$@.tmp" "$@" +CLEANFILES += \ + $(nodist_systemdservice_DATA) \ + $(nodist_upstartjob_DATA) + EXTRA_DIST += \ %D%/libstore/schema.sql \ %D%/AUTHORS \ |