Skip to content

Commit 988ae6c

Browse files
committed
configure: redirect sphinx-build check to config.log
Otherwise it's hard to debug whats going on. Signed-off-by: Alex Bennée <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Reviewed-by: Richard Henderson <[email protected]> Message-Id: <[email protected]>
1 parent 551affb commit 988ae6c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

configure

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4942,7 +4942,9 @@ has_sphinx_build() {
49424942
# sphinx-build doesn't exist at all or if it is too old.
49434943
mkdir -p "$TMPDIR1/sphinx"
49444944
touch "$TMPDIR1/sphinx/index.rst"
4945-
"$sphinx_build" $sphinx_werror -c "$source_path/docs" -b html "$TMPDIR1/sphinx" "$TMPDIR1/sphinx/out" >/dev/null 2>&1
4945+
"$sphinx_build" $sphinx_werror -c "$source_path/docs" \
4946+
-b html "$TMPDIR1/sphinx" \
4947+
"$TMPDIR1/sphinx/out" >> config.log 2>&1
49464948
}
49474949

49484950
# Check if tools are available to build documentation.

0 commit comments

Comments
 (0)