blob: d4c6bb8e059c05d6f79982fcb558483e3daecd6d [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From 2902dda6e3f7b2cd5796a96af20deece610e2eb9 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Mon, 16 Nov 2015 22:20:49 -0800
4Subject: [PATCH] build_unix/Makefile: let libdb-6.0.la depend os_map.lo
5
6Fixed parallel issue:
7libtool: link: `os_map.lo' is not a valid libtool object
8Makefile:867: recipe for target 'libdb-6.0.la' failed
9
10Upstream-Status: Pending
11
12Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13---
14 dist/Makefile.in | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/dist/Makefile.in b/dist/Makefile.in
18index 0a42375..d9e05b9 100644
19--- a/dist/Makefile.in
20+++ b/dist/Makefile.in
21@@ -863,7 +863,7 @@ $(libdb_version): $(C_OBJS)
22 $(LN) -s $(libdb_version) $(libdb)
23
24 # Shared C library.
25-$(libso_target): $(C_OBJS) bt_rec@o@
26+$(libso_target): $(C_OBJS) bt_rec@o@ os_map@o@
27 $(SOLINK) $(SOFLAGS) $(LDFLAGS) -o $@ $(C_OBJS) \
28 $(LIBCSO_LIBS)
29 $(RM) $(libdb)
30--
311.7.9.5
32