8358cf276a
+ bug-1228854_lvm2-monitor-service-start-after-systemd-remount-fs.patch OBS-URL: https://build.opensuse.org/package/show/Base:System/lvm2?expand=0&rev=347
48 lines
1.3 KiB
Diff
48 lines
1.3 KiB
Diff
From 6cfd57627c7c8b1aee4cf8164d88e206660bf753 Mon Sep 17 00:00:00 2001
|
|
From: Eric Ren <zren@suse.com>
|
|
Date: Tue, 4 Jul 2017 20:11:17 +0800
|
|
Subject: [PATCH] build: skip compliling daemons/lvmlockd directory
|
|
|
|
bsc#1037309
|
|
|
|
Signed-off-by: Eric Ren <zren@suse.com>
|
|
---
|
|
configure | 3 ++-
|
|
daemons/Makefile.in | 6 +++---
|
|
2 files changed, 5 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/configure b/configure
|
|
index 0bb5b3dbc6ca..ea657178076b 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -12023,7 +12023,8 @@ fi
|
|
printf "%s\n" "$BUILD_LVMPOLLD" >&6; }
|
|
|
|
################################################################################
|
|
-BUILD_LVMLOCKD=no
|
|
+#BUILD_LVMLOCKD=no
|
|
+BUILD_LVMLOCKD=yes
|
|
|
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to build lvmlockdsanlock" >&5
|
|
printf %s "checking whether to build lvmlockdsanlock... " >&6; }
|
|
diff --git a/daemons/Makefile.in b/daemons/Makefile.in
|
|
index e548b1556478..642d839c046f 100644
|
|
--- a/daemons/Makefile.in
|
|
+++ b/daemons/Makefile.in
|
|
@@ -32,9 +32,9 @@ ifeq ("@BUILD_LVMPOLLD@", "yes")
|
|
SUBDIRS += lvmpolld
|
|
endif
|
|
|
|
-ifeq ("@BUILD_LVMLOCKD@", "yes")
|
|
- SUBDIRS += lvmlockd
|
|
-endif
|
|
+#ifeq ("@BUILD_LVMLOCKD@", "yes")
|
|
+# SUBDIRS += lvmlockd
|
|
+#endif
|
|
|
|
ifeq ("@BUILD_LVMDBUSD@", "yes")
|
|
SUBDIRS += lvmdbusd
|
|
--
|
|
2.42.0
|
|
|