summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/multipath-tools/files/0029-multipath-tools-modify-Makefile.inc-for-cross-compil.patch28
-rw-r--r--meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.1.bb (renamed from meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.0.bb)2
2 files changed, 16 insertions, 14 deletions
diff --git a/meta-oe/recipes-support/multipath-tools/files/0029-multipath-tools-modify-Makefile.inc-for-cross-compil.patch b/meta-oe/recipes-support/multipath-tools/files/0029-multipath-tools-modify-Makefile.inc-for-cross-compil.patch
index 4fa7960b17..3919f99045 100644
--- a/meta-oe/recipes-support/multipath-tools/files/0029-multipath-tools-modify-Makefile.inc-for-cross-compil.patch
+++ b/meta-oe/recipes-support/multipath-tools/files/0029-multipath-tools-modify-Makefile.inc-for-cross-compil.patch
@@ -1,10 +1,7 @@
1From a805b601fcf4bb9e269566a8d25e48d9e60915c0 Mon Sep 17 00:00:00 2001 1From c3436ec8a502a40579abf62be0a479fa9d7888ad Mon Sep 17 00:00:00 2001
2From: Changqing Li <changqing.li@windriver.com> 2From: Changqing Li <changqing.li@windriver.com>
3Date: Mon, 26 Nov 2018 11:14:24 +0800 3Date: Tue, 4 Jun 2019 11:39:39 +0800
4Subject: [PATCH] From 8bdd4481d822b6625d8bf719431ca74ed1b5e021 Mon Sep 17 4Subject: [PATCH] multipath-tools: modify Makefile.inc for cross-compilation
5 00:00:00 2001 From: Changqing Li <changqing.li@windriver.com> Date: Mon, 16
6 Jul 2018 15:56:37 +0800 Subject: [PATCH] multipath-tools: modify Makefile.inc
7 for cross-compilation
8 5
9Do not look for systemd info on the host, and allow us to pass in CFLAGS 6Do not look for systemd info on the host, and allow us to pass in CFLAGS
10using the OPTFLAGS variable. 7using the OPTFLAGS variable.
@@ -27,23 +24,28 @@ remove change about CFLAGS part, since patch 0024 already have similar function.
27 24
28Signed-off-by: Changqing Li <changqing.li@windriver.com> 25Signed-off-by: Changqing Li <changqing.li@windriver.com>
29 26
30update for version 0.7.9 27update for version 0.8.1
31Signed-off-by: Changqing Li <changqing.li@windriver.com> 28Signed-off-by: Changqing Li <changqing.li@windriver.com>
32--- 29---
33 Makefile.inc | 6 ------ 30 Makefile.inc | 11 -----------
34 1 file changed, 6 deletions(-) 31 1 file changed, 11 deletions(-)
35 32
36diff --git a/Makefile.inc b/Makefile.inc 33diff --git a/Makefile.inc b/Makefile.inc
37index 295afb9..7136db3 100644 34index 661f141..3f9fd28 100644
38--- a/Makefile.inc 35--- a/Makefile.inc
39+++ b/Makefile.inc 36+++ b/Makefile.inc
40@@ -38,12 +38,6 @@ ifndef RUN 37@@ -35,17 +35,6 @@ ifndef RUN
41 endif 38 endif
42 endif 39 endif
43 40
44-ifndef SYSTEMD 41-ifndef SYSTEMD
45- ifeq ($(shell systemctl --version > /dev/null 2>&1 && echo 1), 1) 42- ifeq ($(shell pkg-config --modversion libsystemd >/dev/null 2>&1 && echo 1), 1)
46- SYSTEMD = $(shell systemctl --version 2> /dev/null | sed -n 's/systemd \([0-9]*\)/\1/p') 43- SYSTEMD = $(shell pkg-config --modversion libsystemd)
44- else
45- ifeq ($(shell systemctl --version >/dev/null 2>&1 && echo 1), 1)
46- SYSTEMD = $(shell systemctl --version 2> /dev/null | \
47- sed -n 's/systemd \([0-9]*\).*/\1/p')
48- endif
47- endif 49- endif
48-endif 50-endif
49- 51-
diff --git a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.0.bb b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.1.bb
index 0cff48dc4a..55866e9841 100644
--- a/meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.0.bb
+++ b/meta-oe/recipes-support/multipath-tools/multipath-tools_0.8.1.bb
@@ -46,7 +46,7 @@ SRC_URI = "git://git.opensvc.com/multipath-tools/.git;protocol=http \
46 46
47LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" 47LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
48 48
49SRCREV = "eb688e1833e9533bfd9496ddc37eecc93590defa" 49SRCREV = "e23b5d7cf67a9c543e118f2f6b902594a02a804a"
50 50
51S = "${WORKDIR}/git" 51S = "${WORKDIR}/git"
52 52