summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-extended/lcdproc/lcdproc/0001-Fix-parallel-build-fix-port-internal-make-dependenci.patch33
-rw-r--r--meta-oe/recipes-extended/lcdproc/lcdproc_git.bb3
2 files changed, 35 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/lcdproc/lcdproc/0001-Fix-parallel-build-fix-port-internal-make-dependenci.patch b/meta-oe/recipes-extended/lcdproc/lcdproc/0001-Fix-parallel-build-fix-port-internal-make-dependenci.patch
new file mode 100644
index 0000000000..8505ea34c8
--- /dev/null
+++ b/meta-oe/recipes-extended/lcdproc/lcdproc/0001-Fix-parallel-build-fix-port-internal-make-dependenci.patch
@@ -0,0 +1,33 @@
1From 67d808b8739817c122bed8ba1a8308d01cb5ad0b Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 6 Apr 2019 17:28:28 -0700
4Subject: [PATCH] Fix parallel build (fix port-internal make dependencies) on
5 many cores
6
7Upstream-Status: Pending
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
10 server/drivers/Makefile.am | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13diff --git a/server/drivers/Makefile.am b/server/drivers/Makefile.am
14index 0c23a9b..6777047 100644
15--- a/server/drivers/Makefile.am
16+++ b/server/drivers/Makefile.am
17@@ -47,11 +47,11 @@ CwLnx_LDADD = libLCD.a libbignum.a
18 futaba_LDADD = @LIBUSB_LIBS@ @LIBUSB_1_0_LIBS@ libLCD.a
19 g15_LDADD = @LIBG15@
20 glcd_LDADD = libLCD.a @GLCD_DRIVERS@ @FT2_LIBS@ @LIBPNG_LIBS@ @LIBSERDISP@ @LIBUSB_LIBS@ @LIBX11_LIBS@
21-glcd_DEPENDENCIES = @GLCD_DRIVERS@ glcd-glcd-render.o
22+glcd_DEPENDENCIES = @GLCD_DRIVERS@ glcd-glcd-render.o libLCD.a
23 glcdlib_LDADD = @LIBGLCD@
24 glk_LDADD = libbignum.a
25 hd44780_LDADD = libLCD.a @HD44780_DRIVERS@ @HD44780_I2C@ @LIBUSB_LIBS@ @LIBFTDI_LIBS@ @LIBUGPIO@ libbignum.a
26-hd44780_DEPENDENCIES = @HD44780_DRIVERS@ @HD44780_I2C@
27+hd44780_DEPENDENCIES = @HD44780_DRIVERS@ @HD44780_I2C@ libLCD.a libbignum.a
28 i2500vfd_LDADD = @LIBFTDI_LIBS@
29 imon_LDADD = libLCD.a libbignum.a
30 imonlcd_LDADD = libLCD.a
31--
322.21.0
33
diff --git a/meta-oe/recipes-extended/lcdproc/lcdproc_git.bb b/meta-oe/recipes-extended/lcdproc/lcdproc_git.bb
index 1354997891..7ddc55f5e7 100644
--- a/meta-oe/recipes-extended/lcdproc/lcdproc_git.bb
+++ b/meta-oe/recipes-extended/lcdproc/lcdproc_git.bb
@@ -11,8 +11,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760 \
11 11
12BASEPV = "0.5.9" 12BASEPV = "0.5.9"
13PV = "${BASEPV}+git${SRCPV}" 13PV = "${BASEPV}+git${SRCPV}"
14SRCREV = "a4b5a7e058fdd0d914a61138748b589c0128b45b" 14SRCREV = "e08546c13a4157ed98cd4a8e9086e7acd66f93c0"
15SRC_URI = "git://github.com/lcdproc/lcdproc \ 15SRC_URI = "git://github.com/lcdproc/lcdproc \
16 file://0001-Fix-parallel-build-fix-port-internal-make-dependenci.patch \
16 " 17 "
17 18
18S = "${WORKDIR}/git" 19S = "${WORKDIR}/git"