From f7ba4f4b1963317c06a40de360ff1c53df276fa7 Mon Sep 17 00:00:00 2001 From: Richard Laager Date: Fri, 29 May 2020 13:56:02 -0500 Subject: [PATCH] Fix absolute URL fix again Ugh! This time I accidentally forgot the -i for sed. Signed-off-by: Richard Laager --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 204afb6..289bcaf 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -18,7 +18,7 @@ help: # not rebuilt if it already exists and 404.rst was not changed. html: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - @sed -E 's/(action|href|src)="([^\/#])/\1="\/\2/;s/\/http/http/' \ + @sed -Ei 's/(action|href|src)="([^\/#])/\1="\/\2/;s/\/http/http/' \ "$(BUILDDIR)/html/404.html" # Catch-all target: route all unknown targets to Sphinx using the new