blob: 2827bb8745e687fd2b1a22a34aa9e7bbdd58f365 [file] [log] [blame]
Andrew Geisslereafcbb82020-06-05 17:59:17 -05001From 04884263d1de8c427a7a15bd1cf6466ea65d3a0b Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Mon, 25 May 2020 23:22:55 -0700
4Subject: [PATCH] add explicit dependency on libraries
5
6[snip]
7gcc/i686-overc-linux/10.1.0/ld: cannot find -lmpathpersist
8collect2: error: ld returned 1 exit status
9Makefile:36: recipe for target 'multipathd' failed
10make[1]: *** [multipathd] Error 1
11make[1]: Leaving directory 'git/multipathd'
12Makefile:29: recipe for target 'multipathd' failed
13make: *** [multipathd] Error 2
14ln -sf libmpathpersist.so.0 libmpathpersist.so
15[snip]
16
17Upstream-Status: Pending
18
19Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
20---
21 Makefile | 3 ++-
22 1 file changed, 2 insertions(+), 1 deletion(-)
23
24diff --git a/Makefile b/Makefile
25index bea0a0b2..37a77129 100644
26--- a/Makefile
27+++ b/Makefile
28@@ -29,7 +29,8 @@ $(BUILDDIRS):
29 $(MAKE) -C $@
30
31 multipath multipathd mpathpersist libmpathpersist : libmultipath
32-mpathpersist: libmpathpersist
33+mpathpersist multipathd: libmpathpersist
34+libdmmp libmultipath mpathpersist multipath multipathd: libmpathcmd
35
36 DEPS_ON_MULTIPATH := \
37 multipath \
38--
392.21.0
40