mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
134b9518ff
Release notes: https://lists.gnu.org/archive/html/info-gnu/2019-10/msg00000.html Removed patches applied upstream: - 0001-compiler-sanity-checks.patch https://git.savannah.gnu.org/cgit/screen.git/commit/?h=v.4.7.0&id=6b320186db7df1e58fdd2c836af54c86cc596981 - 0003-cross-compilation-AC_TRY_RUN.patch https://git.savannah.gnu.org/cgit/screen.git/commit/?h=v.4.7.0&id=abba47ce4206506c49858d944e904fff86ae65cc - 0004-cross-compilation-ignore-host-fs.patch https://git.savannah.gnu.org/cgit/screen.git/commit/?h=v.4.7.0&id=c573b89139e7a068f5573abd565605bed60f293f - 0005-avoid-identifying-as-SVR4.patch https://git.savannah.gnu.org/cgit/screen.git/commit/?h=v.4.7.0&id=ec90292592dd2c9d5c108390841e3df24e377ed5 Rebased 0001-no-memcpy-fallback.patch Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
From b719314d201a3e9e1e57c65746a468c47bfc847f Mon Sep 17 00:00:00 2001
|
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Date: Wed, 3 Oct 2018 22:29:32 +0200
|
|
Subject: [PATCH] comm.h needed for list_{display,generic}.o
|
|
|
|
comm.h is needed to build list_display.o and list_generic.o otherwise
|
|
parallel builds will sometimes fail
|
|
|
|
Fixes:
|
|
- http://autobuild.buildroot.org/results/43105f14857dbe72d8878fc7b3db67f7bdca93cc
|
|
- http://autobuild.buildroot.org/results/47f4ecbec1355285633df287fc9c4e7cccde9378
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
[Upstream status: https://savannah.gnu.org/bugs/index.php?54776]
|
|
---
|
|
Makefile.in | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index af5938b..e6d5247 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -265,7 +265,7 @@ braille.h
|
|
viewport.o: layout.h viewport.h canvas.h viewport.c config.h screen.h os.h osdef.h ansi.h acls.h \
|
|
comm.h layer.h term.h image.h display.h window.h extern.h \
|
|
braille.h
|
|
-list_generic.o: list_generic.h list_generic.c layer.h screen.h osdef.h
|
|
-list_display.o: list_generic.h list_display.c layer.h screen.h osdef.h
|
|
+list_generic.o: list_generic.h list_generic.c layer.h screen.h osdef.h comm.h
|
|
+list_display.o: list_generic.h list_display.c layer.h screen.h osdef.h comm.h
|
|
list_window.o: list_generic.h list_window.c window.h layer.h screen.h osdef.h comm.h
|
|
|
|
--
|
|
2.17.1
|
|
|