mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
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
This commit is contained in:
parent
5856ea5e4e
commit
39e0121354
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ shift
|
||||||
|
|
||||||
exec "${AWK-awk}" '
|
exec "${AWK-awk}" '
|
||||||
function detexinfo() {
|
function detexinfo() {
|
||||||
gsub(/@value{emacsname}/, "Emacs")
|
gsub(/@value\{emacsname\}/, "Emacs")
|
||||||
gsub(/@[^{]*\{/, "")
|
gsub(/@[^{]*\{/, "")
|
||||||
gsub(/}/, "")
|
gsub(/}/, "")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue