python3Packages.sphinxHook: Rename loop var in source root detection

The loop variable to find the documentation source root was
unnecessarily short, rename it to something meaningful.
This commit is contained in:
Martin Weinelt 2022-08-24 03:32:13 +02:00
parent 5a852f4085
commit caf2d010ed
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -6,7 +6,7 @@ declare -a __sphinxBuilders
buildSphinxPhase() {
echo "Executing buildSphinxPhase"
local __sphinxRoot="" o
local __sphinxRoot=""
runHook preBuildSphinx
if [[ -n "${sphinxRoot:-}" ]] ; then # explicit root
@ -16,10 +16,10 @@ buildSphinxPhase() {
fi
__sphinxRoot=$sphinxRoot
else
for o in doc docs doc/source docs/source ; do
if [[ -f "$o/conf.py" ]] ; then
echo "Sphinx documentation found in $o"
__sphinxRoot=$o
for candidate in doc docs doc/source docs/source ; do
if [[ -f "$candidate/conf.py" ]] ; then
echo "Sphinx documentation found in $candidate"
__sphinxRoot=$candidate
break
fi
done