From b2d1d147727503606caed0b459b37b0830682c06 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Fri, 28 Oct 2022 12:20:41 +0200 Subject: [PATCH] build/autotools: adjust hack for gettext() for other Makefile versions On rhel-8.7, we use a different gettext version, so the Makefile looks different. Adjust patch the source. Fixes: 7ee0da3eaffd ('build: don't "update-po" during make dist') --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index e35813c443..0172acec1c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -176,7 +176,8 @@ endif # https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1405 po/.Makefile.patched: sed -i \ - 's#^dist2: \$$(srcdir)/stamp-po \$$(DISTFILES)#dist2: \$$(srcdir)/stamp-po\n\t\$$(MAKE) \$$(DISTFILES)#' \ + -e 's#^dist2: \$$(srcdir)/stamp-po \$$(DISTFILES)#dist2: \$$(srcdir)/stamp-po\n\t\$$(MAKE) \$$(DISTFILES)#' \ + -e 's#^dist2: stamp-po \$$(DISTFILES)#dist2: stamp-po\n\t\$$(MAKE) \$$(DISTFILES)#' \ "$(builddir)/po/Makefile" && \ touch "$(builddir)/po/.Makefile.patched"