Blame SOURCES/0054-build-Fix-make-rpm-with-VERSION_DM-without-dash.patch

38b7b2
From e60d7ce8e748cb6d51552879c162d01aafa17160 Mon Sep 17 00:00:00 2001
38b7b2
From: Marian Csontos <mcsontos@redhat.com>
38b7b2
Date: Wed, 15 Jun 2022 11:53:51 +0200
38b7b2
Subject: [PATCH 54/54] build: Fix make rpm with VERSION_DM without dash
38b7b2
38b7b2
When building RPM from a branch based on a release tag the expected -git
38b7b2
suffix is missing breaking the script producing error like following one:
38b7b2
38b7b2
    error: line 215: Unterminated rich dependency: (2021-53.ge36b180a6.el9: Requires: device-mapper-devel >= 1.02.181 (2021-53.ge36b180a6.el9
38b7b2
---
38b7b2
 Makefile.in | 2 +-
38b7b2
 1 file changed, 1 insertion(+), 1 deletion(-)
38b7b2
38b7b2
diff --git a/Makefile.in b/Makefile.in
38b7b2
index 3b7e0ecaa..f7a46269a 100644
38b7b2
--- a/Makefile.in
38b7b2
+++ b/Makefile.in
38b7b2
@@ -110,7 +110,7 @@ rpm: dist
38b7b2
 	$(LN_S) -f $(abs_top_srcdir)/spec/build.inc $(rpmbuilddir)/SOURCES
38b7b2
 	$(LN_S) -f $(abs_top_srcdir)/spec/macros.inc $(rpmbuilddir)/SOURCES
38b7b2
 	$(LN_S) -f $(abs_top_srcdir)/spec/packages.inc $(rpmbuilddir)/SOURCES
38b7b2
-	DM_VER=$$(cut -d- -f1 $(top_srcdir)/VERSION_DM);\
38b7b2
+	DM_VER=$$(cut -d' ' -f1 $(top_srcdir)/VERSION_DM | cut -d- -f1);\
38b7b2
 	GIT_VER=$$(cd $(top_srcdir); git describe | cut -d- --output-delimiter=. -f2,3 || echo 0);\
38b7b2
 	$(SED) -e "s,\(device_mapper_version\) [0-9.]*$$,\1 $$DM_VER," \
38b7b2
 	    -e "s,^\(Version:[^0-9%]*\)[0-9.]*$$,\1 $(LVM_VER)," \
38b7b2
-- 
38b7b2
2.34.3
38b7b2