[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 06/11] configure: redirect sphinx-build check to config.log
From: |
Alex Bennée |
Subject: |
[PATCH v1 06/11] configure: redirect sphinx-build check to config.log |
Date: |
Thu, 9 Apr 2020 22:15:24 +0100 |
Otherwise it's hard to debug whats going on.
Signed-off-by: Alex Bennée <address@hidden>
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 233c671aaa9..a207cce82bc 100755
--- a/configure
+++ b/configure
@@ -4936,7 +4936,7 @@ has_sphinx_build() {
# sphinx-build doesn't exist at all or if it is too old.
mkdir -p "$TMPDIR1/sphinx"
touch "$TMPDIR1/sphinx/index.rst"
- "$sphinx_build" -c "$source_path/docs" -b html "$TMPDIR1/sphinx"
"$TMPDIR1/sphinx/out" >/dev/null 2>&1
+ "$sphinx_build" -c "$source_path/docs" -b html "$TMPDIR1/sphinx"
"$TMPDIR1/sphinx/out" >> config.log 2>&1
}
# Check if tools are available to build documentation.
--
2.20.1
- [PATCH for 5.0-rc3 v1 00/11] more random fixes, Alex Bennée, 2020/04/09
- [PATCH v1 02/11] exec/cpu-all: Use bool for have_guest_base, Alex Bennée, 2020/04/09
- [PATCH v1 03/11] accel/tcg: Relax va restrictions on 64-bit guests, Alex Bennée, 2020/04/09
- [PATCH v1 04/11] linux-user/ppc: Fix padding in mcontext_t for ppc64, Alex Bennée, 2020/04/09
- [PATCH v1 01/11] linux-user: completely re-write init_guest_space, Alex Bennée, 2020/04/09
- [PATCH v1 05/11] tests/docker: add docs FEATURE flag and use for test-misc, Alex Bennée, 2020/04/09
- [PATCH v1 06/11] configure: redirect sphinx-build check to config.log,
Alex Bennée <=
- [PATCH v1 08/11] target/m68k/helper: Fix m68k_fpu_gdb_get_reg() use of GByteArray, Alex Bennée, 2020/04/09
- [PATCH v1 07/11] configure: disable PIE for Windows builds, Alex Bennée, 2020/04/09
- [PATCH v1 09/11] gdbstub: i386: Fix gdb_get_reg16() parameter to unbreak gdb, Alex Bennée, 2020/04/09