summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c/0003-src-Makefile-Fix-Makefile-macro-error.patch29
-rw-r--r--meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.54.02.bb1
2 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c/0003-src-Makefile-Fix-Makefile-macro-error.patch b/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c/0003-src-Makefile-Fix-Makefile-macro-error.patch
new file mode 100644
index 0000000000..3d861fc625
--- /dev/null
+++ b/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c/0003-src-Makefile-Fix-Makefile-macro-error.patch
@@ -0,0 +1,29 @@
1From ea4ca50ca9cab755f3722096158a46deec0e663a Mon Sep 17 00:00:00 2001
2From: Arthur She <arthur.she@linaro.org>
3Date: Tue, 25 Aug 2020 09:51:26 -0700
4Subject: [PATCH] src/Makefile: Fix Makefile macro error
5
6This error caused the curl library wouldn't be linked correctly.
7
8Upstream-Status: Pending
9Signed-off-by: Arthur She <arthur.she@linaro.org>
10---
11 src/Makefile | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/src/Makefile b/src/Makefile
15index 1cdf8b0..acd04dd 100644
16--- a/src/Makefile
17+++ b/src/Makefile
18@@ -57,7 +57,7 @@ ifeq ($(MUST_BUILD_CURL_CLIENT),yes)
19 TRANSPORT_MODS += $(BLDDIR)/lib/curl_transport/xmlrpc_curl_transport
20 TRANSPORT_MODS += $(BLDDIR)/lib/curl_transport/curltransaction
21 TRANSPORT_MODS += $(BLDDIR)/lib/curl_transport/curlmulti
22- TRANSPORT_LIBDEP += $(shell $CURL_CONFIG --libs)
23+ TRANSPORT_LIBDEP += $(shell $(CURL_CONFIG) --libs)
24 TRANSPORT_INCLUDES += -Isrcdir/lib/curl_transport
25 endif
26 ifeq ($(MUST_BUILD_LIBWWW_CLIENT),yes)
27--
282.17.1
29
diff --git a/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.54.02.bb b/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.54.02.bb
index c1f0b78cae..aba6dfd885 100644
--- a/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.54.02.bb
+++ b/meta-oe/recipes-devtools/xmlrpc-c/xmlrpc-c_1.54.02.bb
@@ -8,6 +8,7 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=aefbf81ba0750f02176b6f86752ea951"
8SRC_URI = "git://github.com/mirror/xmlrpc-c.git \ 8SRC_URI = "git://github.com/mirror/xmlrpc-c.git \
9 file://0001-test-cpp-server_abyss-Fix-build-with-clang-libc.patch \ 9 file://0001-test-cpp-server_abyss-Fix-build-with-clang-libc.patch \
10 file://0002-fix-formatting-issues.patch \ 10 file://0002-fix-formatting-issues.patch \
11 file://0003-src-Makefile-Fix-Makefile-macro-error.patch \
11 " 12 "
12 13
13#Release 1.54.02 14#Release 1.54.02