41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
|
|
From ee9f7b6e764be5668bc958f8bb97a46e5056d050 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Hongxu Jia <hongxu.jia@windriver.com>
|
||
|
|
Date: Mon, 25 May 2020 23:22:55 -0700
|
||
|
|
Subject: [PATCH] add explicit dependency on libraries
|
||
|
|
|
||
|
|
[snip]
|
||
|
|
gcc/i686-overc-linux/10.1.0/ld: cannot find -lmpathpersist
|
||
|
|
collect2: error: ld returned 1 exit status
|
||
|
|
Makefile:36: recipe for target 'multipathd' failed
|
||
|
|
make[1]: *** [multipathd] Error 1
|
||
|
|
make[1]: Leaving directory 'git/multipathd'
|
||
|
|
Makefile:29: recipe for target 'multipathd' failed
|
||
|
|
make: *** [multipathd] Error 2
|
||
|
|
ln -sf libmpathpersist.so.0 libmpathpersist.so
|
||
|
|
[snip]
|
||
|
|
|
||
|
|
Upstream-Status: Pending
|
||
|
|
|
||
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||
|
|
[OP: Rebase to 0.9.3]
|
||
|
|
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
|
||
|
|
---
|
||
|
|
Makefile | 1 +
|
||
|
|
1 file changed, 1 insertion(+)
|
||
|
|
|
||
|
|
diff --git a/Makefile b/Makefile
|
||
|
|
index f195b570..2d22881c 100644
|
||
|
|
--- a/Makefile
|
||
|
|
+++ b/Makefile
|
||
|
|
@@ -78,6 +78,7 @@ libmultipath: libmpathutil
|
||
|
|
libmpathpersist libmpathvalid multipath multipathd: libmultipath
|
||
|
|
libmultipath/prioritizers libmultipath/checkers libmultipath/foreign: libmultipath
|
||
|
|
mpathpersist multipathd: libmpathpersist
|
||
|
|
+libmultipath mpathpersist multipath multipathd: libmpathcmd
|
||
|
|
|
||
|
|
DEPS_ON_MULTIPATH := \
|
||
|
|
multipath \
|
||
|
|
--
|
||
|
|
2.38.1
|
||
|
|
|