From 6fdaa0c52412205017a9a71872169c75f3d3a542 Mon Sep 17 00:00:00 2001 From: Takashi Sakamoto Date: Sun, 27 Jan 2019 11:24:53 +0900 Subject: [PATCH] axfer: add missing header file of unit test to distribution The file 'axfer/test/generator.h' is missing in distribution and brings FTBFS for unit tests of axfer. This commit fixes to add it. Reported-by: Elimar Riesebieter Fixes: b878df1ff0b0: ('axfer: add unit test for container interface') Fixes: 39d1ab8a0cb4: ('axfer: add a unit test for mapper interface') Signed-off-by: Takashi Iwai --- axfer/test/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/axfer/test/Makefile.am b/axfer/test/Makefile.am index 76a93bf..6521134 100644 --- a/axfer/test/Makefile.am +++ b/axfer/test/Makefile.am @@ -14,6 +14,7 @@ container_test_SOURCES = \ ../container-voc.c \ ../container-raw.c \ generator.c \ + generator.h \ container-test.c mapper_test_SOURCES = \ @@ -28,4 +29,5 @@ mapper_test_SOURCES = \ ../mapper-single.c \ ../mapper-multiple.c \ generator.c \ + generator.h \ mapper-test.c