summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2023-01-15 21:42:41 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2023-01-16 12:37:40 +0100
commit92199ad0b98586182a52e2f8cd82c06336e306f1 (patch)
tree431ef6ff3ec1791079254448283c6d58feb8e61f
parent3a58e08b8c1ef8b988a588301e097f50c843f0aa (diff)
downloadlvm2-92199ad0b98586182a52e2f8cd82c06336e306f1.tar.gz
makefiles: fix grep warning from make
Remove unnecessary '\'.
-rw-r--r--udev/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/Makefile.in b/udev/Makefile.in
index e777dda16..ac4de0a6a 100644
--- a/udev/Makefile.in
+++ b/udev/Makefile.in
@@ -20,7 +20,7 @@ include $(top_builddir)/make.tmpl
DM_RULES=10-dm.rules 13-dm-disk.rules 95-dm-notify.rules
LVM_RULES=11-dm-lvm.rules 69-dm-lvm.rules
-DM_DIR=$(shell $(GREP) "\#define DM_DIR" $(top_srcdir)/libdm/misc/dm-ioctl.h | $(AWK) '{print $$3}')
+DM_DIR=$(shell $(GREP) "#define DM_DIR" $(top_srcdir)/libdm/misc/dm-ioctl.h | $(AWK) '{print $$3}')
BINDIR=@bindir@
ifeq ("@UDEV_RULE_EXEC_DETECTION@", "yes")