diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-06-04 14:32:26 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-08 15:23:39 +0200 |
commit | 751164bca1030dfd14f9fa7508c03eb4b41173e4 (patch) | |
tree | 6b9a1b94138dd31b3b3bc07390400078d8ad5218 /nix/local.mk | |
parent | cd8ece22bf608337f3e201bbd42046406a21d441 (diff) | |
download | guix-751164bca1030dfd14f9fa7508c03eb4b41173e4.tar guix-751164bca1030dfd14f9fa7508c03eb4b41173e4.tar.gz |
build: Do not add all of $(BUILT_SOURCES) to $(CLEANFILES).
Reported by Gábor Boskovits <boskovits@gmail.com>.
Fixes <https://bugs.gnu.org/31700>.
* nix/local.mk (CLEANFILES): Add nothing but schema.sql.hh.
Diffstat (limited to 'nix/local.mk')
-rw-r--r-- | nix/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/local.mk b/nix/local.mk index 4452301c63..39717711f8 100644 --- a/nix/local.mk +++ b/nix/local.mk @@ -22,7 +22,7 @@ # BUILT_SOURCES += %D%/libstore/schema.sql.hh -CLEANFILES += $(BUILT_SOURCES) +CLEANFILES += %D%/libstore/schema.sql.hh noinst_LIBRARIES = libformat.a libutil.a libstore.a |