Append rather than assign files to EXTRA_DIST in test/Makefile.am to fix warnings like:
test/Makefile.am:30: warning: EXTRA_DIST multiply defined in condition TRUE ... Makefile.am.in:1: ... 'EXTRA_DIST' previously defined here test/Makefile.am:1: 'Makefile.am.in' included from here Signed-off-by: Dan Williams <[email protected]> --- test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.am b/test/Makefile.am index 58873a6bc341..bde491247a47 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -27,7 +27,7 @@ TESTS =\ max_available_extent_ns.sh \ pfn-meta-errors.sh -EXTRA_DIST = $(TESTS) common \ +EXTRA_DIST += $(TESTS) common \ btt-pad-compat.xxd \ nmem1.bin nmem2.bin nmem3.bin nmem4.bin _______________________________________________ Linux-nvdimm mailing list -- [email protected] To unsubscribe send an email to [email protected]
