summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch')
-rw-r--r--meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch b/meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch
new file mode 100644
index 000000000..a2f7a4b77
--- /dev/null
+++ b/meta-oe/recipes-devtools/protobuf/protobuf/0001-protobuf-fix-configure-error.patch
@@ -0,0 +1,33 @@
1From 52959e8e01e39139d18f752e97283e45b4b7a426 Mon Sep 17 00:00:00 2001
2From: Changqing Li <changqing.li@windriver.com>
3Date: Wed, 18 Jul 2018 17:52:34 +0800
4Subject: [PATCH] protobuf: fix configure error
5
6fix below error:
7gnu-configize: 'configure.ac' or 'configure.in' is required
8
9third_party/googletest is git submodule of protobuf. Above error
10caused by missing submodule googletest.
11
12Upstream-Status: Inappropriate [oe-specific]
13
14Signed-off-by: Changqing Li <changqing.li@windriver.com>
15---
16 configure.ac | 1 -
17 1 file changed, 1 deletion(-)
18
19diff --git a/configure.ac b/configure.ac
20index aec10cf..7fbe57d 100644
21--- a/configure.ac
22+++ b/configure.ac
23@@ -214,7 +214,6 @@ AX_CXX_COMPILE_STDCXX([11], [noext], [mandatory])
24 # too.
25 export CFLAGS
26 export CXXFLAGS
27-AC_CONFIG_SUBDIRS([third_party/googletest])
28
29 AC_CONFIG_FILES([Makefile src/Makefile benchmarks/Makefile conformance/Makefile protobuf.pc protobuf-lite.pc])
30 AC_OUTPUT
31--
322.7.4
33