mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
lcdproc: Fix parallel build
This happens with larger parallelism e.g. -j 44 also reported here https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214766 Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
|||||||
|
From 67d808b8739817c122bed8ba1a8308d01cb5ad0b Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Sat, 6 Apr 2019 17:28:28 -0700
|
||||||
|
Subject: [PATCH] Fix parallel build (fix port-internal make dependencies) on
|
||||||
|
many cores
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
server/drivers/Makefile.am | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/server/drivers/Makefile.am b/server/drivers/Makefile.am
|
||||||
|
index 0c23a9b..6777047 100644
|
||||||
|
--- a/server/drivers/Makefile.am
|
||||||
|
+++ b/server/drivers/Makefile.am
|
||||||
|
@@ -47,11 +47,11 @@ CwLnx_LDADD = libLCD.a libbignum.a
|
||||||
|
futaba_LDADD = @LIBUSB_LIBS@ @LIBUSB_1_0_LIBS@ libLCD.a
|
||||||
|
g15_LDADD = @LIBG15@
|
||||||
|
glcd_LDADD = libLCD.a @GLCD_DRIVERS@ @FT2_LIBS@ @LIBPNG_LIBS@ @LIBSERDISP@ @LIBUSB_LIBS@ @LIBX11_LIBS@
|
||||||
|
-glcd_DEPENDENCIES = @GLCD_DRIVERS@ glcd-glcd-render.o
|
||||||
|
+glcd_DEPENDENCIES = @GLCD_DRIVERS@ glcd-glcd-render.o libLCD.a
|
||||||
|
glcdlib_LDADD = @LIBGLCD@
|
||||||
|
glk_LDADD = libbignum.a
|
||||||
|
hd44780_LDADD = libLCD.a @HD44780_DRIVERS@ @HD44780_I2C@ @LIBUSB_LIBS@ @LIBFTDI_LIBS@ @LIBUGPIO@ libbignum.a
|
||||||
|
-hd44780_DEPENDENCIES = @HD44780_DRIVERS@ @HD44780_I2C@
|
||||||
|
+hd44780_DEPENDENCIES = @HD44780_DRIVERS@ @HD44780_I2C@ libLCD.a libbignum.a
|
||||||
|
i2500vfd_LDADD = @LIBFTDI_LIBS@
|
||||||
|
imon_LDADD = libLCD.a libbignum.a
|
||||||
|
imonlcd_LDADD = libLCD.a
|
||||||
|
--
|
||||||
|
2.21.0
|
||||||
|
|
||||||
@@ -11,8 +11,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760 \
|
|||||||
|
|
||||||
BASEPV = "0.5.9"
|
BASEPV = "0.5.9"
|
||||||
PV = "${BASEPV}+git${SRCPV}"
|
PV = "${BASEPV}+git${SRCPV}"
|
||||||
SRCREV = "a4b5a7e058fdd0d914a61138748b589c0128b45b"
|
SRCREV = "e08546c13a4157ed98cd4a8e9086e7acd66f93c0"
|
||||||
SRC_URI = "git://github.com/lcdproc/lcdproc \
|
SRC_URI = "git://github.com/lcdproc/lcdproc \
|
||||||
|
file://0001-Fix-parallel-build-fix-port-internal-make-dependenci.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|||||||
Reference in New Issue
Block a user