All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] The == operator is Bash syntax, use = instead
@ 2015-06-26  7:00 Ferenc Wágner
  0 siblings, 0 replies; only message in thread
From: Ferenc Wágner @ 2015-06-26  7:00 UTC (permalink / raw)
  To: lvm-devel

Commit e587b0677b705786a78f21bac1966621f70b2752 broke the build on
systems where /bin/sh is Dash, for example.
---
 libdaemon/Makefile.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libdaemon/Makefile.in b/libdaemon/Makefile.in
index c0379a4..7a637c4 100644
--- a/libdaemon/Makefile.in
+++ b/libdaemon/Makefile.in
@@ -19,7 +19,7 @@ top_builddir = @top_builddir@
 
 SUBDIRS += client
 
-ifeq (yes, $(shell test @BUILD_LVMETAD@ == yes -o @BUILD_LVMPOLLD@ == yes && echo yes))
+ifeq (yes, $(shell test @BUILD_LVMETAD@ = yes -o @BUILD_LVMPOLLD@ = yes && echo yes))
   SUBDIRS += server
 server: client
 endif
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-06-26  7:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-26  7:00 [PATCH] The == operator is Bash syntax, use = instead Ferenc Wágner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.