From 8f1fb2800ae644255c447e13839b23eb048608bc Mon Sep 17 00:00:00 2001 From: Ali Caglayan Date: Wed, 26 Oct 2022 21:44:53 +0100 Subject: [PATCH] makefile: bind on 0.0.0.0 for livedoc (#6336) Some users (me) have permission issues with their hostname. Signed-off-by: Ali Caglayan --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a6fa4806d81..fc7cf8a5a6b 100644 --- a/Makefile +++ b/Makefile @@ -135,7 +135,7 @@ doc: # livedoc-deps: you may need to [pip3 install sphinx-autobuild] and [pip3 install sphinx-rtd-theme] livedoc: cd doc && sphinx-autobuild . _build \ - --port 8888 -q --host $(shell hostname) --re-ignore '\.#.*' + --port 8888 -q --host 0.0.0.0 --re-ignore '\.#.*' update-jbuilds: $(BIN) $(BIN) build @doc/runtest --auto-promote