From: Kees Cook Date: Sat, 22 Feb 2020 00:02:39 +0000 (-0800) Subject: docs: Fix empty parallelism argument X-Git-Tag: v5.5.8~92 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=99f8a1bd959de6527232a3263bc047ca4f41d568;p=users%2Fdwmw2%2Flinux.git docs: Fix empty parallelism argument commit adc10f5b0a03606e30c704cff1f0283a696d0260 upstream. When there was no parallelism (no top-level -j arg and a pre-1.7 sphinx-build), the argument passed would be empty ("") instead of just being missing, which would (understandably) badly confuse sphinx-build. Fix this by removing the quotes. Reported-by: Rafael J. Wysocki Fixes: 51e46c7a4007 ("docs, parallelism: Rearrange how jobserver reservations are made") Cc: stable@vger.kernel.org # v5.5 only Signed-off-by: Kees Cook Signed-off-by: Jonathan Corbet Signed-off-by: Greg Kroah-Hartman --- diff --git a/Documentation/sphinx/parallel-wrapper.sh b/Documentation/sphinx/parallel-wrapper.sh index 7daf5133bdd31..e54c44ce117d5 100644 --- a/Documentation/sphinx/parallel-wrapper.sh +++ b/Documentation/sphinx/parallel-wrapper.sh @@ -30,4 +30,4 @@ if [ -n "$parallel" ] ; then parallel="-j$parallel" fi -exec "$sphinx" "$parallel" "$@" +exec "$sphinx" $parallel "$@"