48 lines
1.3 KiB
Diff
48 lines
1.3 KiB
Diff
|
From f977d86dfea51a09eed1787071676e1d45a8f2f4 Mon Sep 17 00:00:00 2001
|
||
|
From: Eric Ren <zren@suse.com>
|
||
|
Date: Tue, 16 May 2017 15:26:54 +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 4b8311848..cb4d790de 100755
|
||
|
--- a/configure
|
||
|
+++ b/configure
|
||
|
@@ -11772,7 +11772,8 @@ test -n "$LVMPOLLD" && BUILD_LVMPOLLD=$LVMPOLLD
|
||
|
$as_echo "$BUILD_LVMPOLLD" >&6; }
|
||
|
|
||
|
################################################################################
|
||
|
-BUILD_LVMLOCKD=no
|
||
|
+# BUILD_LVMLOCKD=no
|
||
|
+BUILD_LVMLOCKD=yes
|
||
|
|
||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build lockdsanlock" >&5
|
||
|
$as_echo_n "checking whether to build lockdsanlock... " >&6; }
|
||
|
diff --git a/daemons/Makefile.in b/daemons/Makefile.in
|
||
|
index ebbd740ef..58d5fef94 100644
|
||
|
--- a/daemons/Makefile.in
|
||
|
+++ b/daemons/Makefile.in
|
||
|
@@ -40,9 +40,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.12.0
|
||
|
|