From 39e0121354c25919c20786782da0c5f1952278a8 Mon Sep 17 00:00:00 2001 From: Robert Pluim Date: Thu, 17 Aug 2023 12:15:44 +0200 Subject: [PATCH] Escape braces in regexp in make-info-dir This fixes a build failure on Alpine Linux. * build-aux/make-info-dir (detexinfo): Escape the braces, since some awk variants (such as BusyBox's) don't like regexp interval specifications that aren't numbers. Bug#65323 --- build-aux/make-info-dir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/make-info-dir b/build-aux/make-info-dir index 3490b7a31f9..64cf2d43f16 100755 --- a/build-aux/make-info-dir +++ b/build-aux/make-info-dir @@ -38,7 +38,7 @@ shift exec "${AWK-awk}" ' function detexinfo() { - gsub(/@value{emacsname}/, "Emacs") + gsub(/@value\{emacsname\}/, "Emacs") gsub(/@[^{]*\{/, "") gsub(/}/, "") } -- 2.39.2