search for: 45b4877fde

Displaying 2 results from an estimated 2 matches for "45b4877fde".

2020 Mar 16
1
[nbdkit PATCH] eval: Rebuild hard link if git breaks it
Commit 39b40750dd works if you use 'make clean', but not if you rely on incremental builds. Git likes to update files by creating new inodes, which strands hard links. We could either use symlinks, or as done here, add a dependency to force the hard links to be rebuilt as needed. Fixes: 45b4877fde Signed-off-by: Eric Blake <eblake@redhat.com> --- plugins/eval/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/eval/Makefile.am b/plugins/eval/Makefile.am index abbe17a0..19de6c0d 100644 --- a/plugins/eval/Makefile.am +++ b/plugins/eval/Makefile.am...
2020 Mar 16
0
[nbdkit PATCH v2] eval: Rebuild hard link if git breaks it
...rely on 'make clean' after a git update, but not if you rely on incremental 'make'. Git likes to update files by creating new inodes, which strands hard links. We could either use symlinks, or as done here, add a dependency to force the hard links to be rebuilt as needed. Fixes: 45b4877fde Signed-off-by: Eric Blake <eblake@redhat.com> --- plugins/eval/Makefile.am | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/eval/Makefile.am b/plugins/eval/Makefile.am index abbe17a0..da2e7b39 100644 --- a/plugins/eval/Makefile.am +++ b/plugins/eval/Make...