c5432960d9
Update to the head of the upstream staging branch * Previous patches 0001-0042 are included in the source tarball * Patches 0001-0032 are from the upstream staging branch Rename redhat patches * Previous patches 0043-0053 are now patches 0033-0043 Change back to using readline instead of libedit * The code the uses readline has been isolated from the code that is licensed gpl v2 only. Add libmpathutil libraries to spec file Add multipathc program to spec file Add multipath.conf systemd tempfile configuration to spec file Misc spec file cleanups
25 lines
770 B
Diff
25 lines
770 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
Date: Thu, 27 Oct 2022 17:40:30 +0200
|
|
Subject: [PATCH] multipath-tools: Makefile.inc: fix a log message
|
|
|
|
Signed-off-by: Martin Wilck <mwilck@suse.com>
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
Makefile.inc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile.inc b/Makefile.inc
|
|
index 86602e2a..77790ddf 100644
|
|
--- a/Makefile.inc
|
|
+++ b/Makefile.inc
|
|
@@ -159,7 +159,7 @@ check_var = $(shell \
|
|
found=0; \
|
|
status="no"; \
|
|
fi; \
|
|
- echo 1>&2 "Checking for .. $1 in $2 ... $$status"; \
|
|
+ echo 1>&2 "Checking for $1 in $2 ... $$status"; \
|
|
echo "$$found" \
|
|
)
|
|
|