From dd4e8135506dc183512c0575e5cd2829a02865bf Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 28 Jan 2024 13:56:14 +0100 Subject: [PATCH] Fix stray backslash warning in manhtml. --- build-aux/manhtml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/manhtml.sh b/build-aux/manhtml.sh index 03cce9bd..138e64e0 100755 --- a/build-aux/manhtml.sh +++ b/build-aux/manhtml.sh @@ -359,7 +359,7 @@ for section in $SECTIONS; do done (find . -name '*.html' | while read FILE; do - grep -Eoh 'href=\"../man[[:digit:]]/[^/]+\.html\"' "$FILE" || true + grep -Eoh 'href="../man[[:digit:]]/[^/]+\.html"' "$FILE" || true done) | sort -u | grep -Eo 'man[[:digit:]]/[^/]+\.html' | sed 's/\.html$//' | while read manpage; do if ! [ -e "$manpage" ]; then