Issue 36211: show full url when execute "make -C Doc/ serve" (original) (raw)
If we want to check the result of the compilation for the documentation, we can use open build/html or make serve
./configure --prefix=$PWD/build make -j 4 make PYTHON=../python -C Doc venv make PYTHON=../python -C Doc html serve
Here is the current output: make: Entering directory '/home/stephane/src/github.com/python/cpython/Doc' ../Tools/scripts/serve.py build/html Serving build/html on port 8000, control-C to stop
I suggest this output:
Serving build/html on 0.0.0.0 port 8000 (http://0.0.0.0:8000/), control-C to stop
With this change and if the terminal supports the URL, we can click on the link.