1From b719314d201a3e9e1e57c65746a468c47bfc847f Mon Sep 17 00:00:00 2001 2From: Fabrice Fontaine <fontaine.fabrice@gmail.com> 3Date: Wed, 3 Oct 2018 22:29:32 +0200 4Subject: [PATCH] comm.h needed for list_{display,generic}.o 5 6comm.h is needed to build list_display.o and list_generic.o otherwise 7parallel builds will sometimes fail 8 9Fixes: 10 - http://autobuild.buildroot.org/results/43105f14857dbe72d8878fc7b3db67f7bdca93cc 11 - http://autobuild.buildroot.org/results/47f4ecbec1355285633df287fc9c4e7cccde9378 12 13Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> 14[Upstream status: https://savannah.gnu.org/bugs/index.php?54776] 15--- 16 Makefile.in | 4 ++-- 17 1 file changed, 2 insertions(+), 2 deletions(-) 18 19diff --git a/Makefile.in b/Makefile.in 20index af5938b..e6d5247 100644 21--- a/Makefile.in 22+++ b/Makefile.in 23@@ -265,7 +265,7 @@ braille.h 24 viewport.o: layout.h viewport.h canvas.h viewport.c config.h screen.h os.h osdef.h ansi.h acls.h \ 25 comm.h layer.h term.h image.h display.h window.h extern.h \ 26 braille.h 27-list_generic.o: list_generic.h list_generic.c layer.h screen.h osdef.h 28-list_display.o: list_generic.h list_display.c layer.h screen.h osdef.h 29+list_generic.o: list_generic.h list_generic.c layer.h screen.h osdef.h comm.h 30+list_display.o: list_generic.h list_display.c layer.h screen.h osdef.h comm.h 31 list_window.o: list_generic.h list_window.c window.h layer.h screen.h osdef.h comm.h 32 33-- 342.17.1 35 36