summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/sqlite/sqlite3/parallel.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3/parallel.patch')
-rw-r--r--meta/recipes-support/sqlite/sqlite3/parallel.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3/parallel.patch b/meta/recipes-support/sqlite/sqlite3/parallel.patch
deleted file mode 100644
index 7b886a6bca..0000000000
--- a/meta/recipes-support/sqlite/sqlite3/parallel.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From 140476c3e6a6f497bdd95c0c039cb9a680f5a414 Mon Sep 17 00:00:00 2001
2From: Andre McCurdy <armccurdy@gmail.com>
3Date: Fri, 22 Jan 2016 15:53:04 -0800
4Subject: [PATCH] parallel build fix
5
6When statically linking the sqlite3 binary, ensure that it depends on
7its own version of sqlite3.o, instead of the version being built (in
8parallel) for use in the libsqlite3.a static library.
9
10Upstream-Status: Pending
11
12Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
13---
14 configure.ac | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/configure.ac b/configure.ac
18index e9b3950..0e8f043 100644
19--- a/configure.ac
20+++ b/configure.ac
21@@ -129,7 +129,7 @@ AC_ARG_ENABLE(static-shell, [AS_HELP_STRING(
22 [statically link libsqlite3 into shell tool [default=yes]])],
23 [], [enable_static_shell=yes])
24 if test x"$enable_static_shell" == "xyes"; then
25- EXTRA_SHELL_OBJ=sqlite3.$OBJEXT
26+ EXTRA_SHELL_OBJ=sqlite3-sqlite3.$OBJEXT
27 else
28 EXTRA_SHELL_OBJ=libsqlite3.la
29 fi
30--
311.9.1
32