Patrick Williams | b58112e | 2024-03-07 11:16:36 -0600 | [diff] [blame^] | 1 | From 7a46f43682641436464579d8bf76c382e71ea557 Mon Sep 17 00:00:00 2001 |
Andrew Geissler | eafcbb8 | 2020-06-05 17:59:17 -0500 | [diff] [blame] | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Mon, 25 May 2020 23:22:55 -0700 |
Patrick Williams | b58112e | 2024-03-07 11:16:36 -0600 | [diff] [blame^] | 4 | Subject: [PATCH 12/12] add explicit dependency on libraries |
Andrew Geissler | eafcbb8 | 2020-06-05 17:59:17 -0500 | [diff] [blame] | 5 | |
| 6 | [snip] |
| 7 | gcc/i686-overc-linux/10.1.0/ld: cannot find -lmpathpersist |
| 8 | collect2: error: ld returned 1 exit status |
| 9 | Makefile:36: recipe for target 'multipathd' failed |
| 10 | make[1]: *** [multipathd] Error 1 |
| 11 | make[1]: Leaving directory 'git/multipathd' |
| 12 | Makefile:29: recipe for target 'multipathd' failed |
| 13 | make: *** [multipathd] Error 2 |
| 14 | ln -sf libmpathpersist.so.0 libmpathpersist.so |
| 15 | [snip] |
| 16 | |
| 17 | Upstream-Status: Pending |
| 18 | |
| 19 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 20 | [OP: Rebase to 0.9.3] |
| 21 | Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com> |
Andrew Geissler | eafcbb8 | 2020-06-05 17:59:17 -0500 | [diff] [blame] | 22 | --- |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 23 | Makefile | 1 + |
| 24 | 1 file changed, 1 insertion(+) |
Andrew Geissler | eafcbb8 | 2020-06-05 17:59:17 -0500 | [diff] [blame] | 25 | |
| 26 | diff --git a/Makefile b/Makefile |
Patrick Williams | b58112e | 2024-03-07 11:16:36 -0600 | [diff] [blame^] | 27 | index 065249c2..0444c2ea 100644 |
Andrew Geissler | eafcbb8 | 2020-06-05 17:59:17 -0500 | [diff] [blame] | 28 | --- a/Makefile |
| 29 | +++ b/Makefile |
Patrick Williams | b58112e | 2024-03-07 11:16:36 -0600 | [diff] [blame^] | 30 | @@ -90,6 +90,7 @@ libmultipath: libmpathutil |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 31 | libmpathpersist libmpathvalid multipath multipathd: libmultipath |
| 32 | libmultipath/prioritizers libmultipath/checkers libmultipath/foreign: libmultipath |
| 33 | mpathpersist multipathd: libmpathpersist |
| 34 | +libmultipath mpathpersist multipath multipathd: libmpathcmd |
Andrew Geissler | eafcbb8 | 2020-06-05 17:59:17 -0500 | [diff] [blame] | 35 | |
| 36 | DEPS_ON_MULTIPATH := \ |
| 37 | multipath \ |
| 38 | -- |
Patrick Williams | b58112e | 2024-03-07 11:16:36 -0600 | [diff] [blame^] | 39 | 2.25.1 |
Andrew Geissler | eafcbb8 | 2020-06-05 17:59:17 -0500 | [diff] [blame] | 40 | |