From: Michal Nowak Date: Mon, 4 Sep 2023 18:04:43 +0000 (+0200) Subject: Simplify Sphinx tools installation X-Git-Tag: v9.19.17~2^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93dc606fa88e9ccedffa54995bbe77ae01415933;p=thirdparty%2Fbind9.git Simplify Sphinx tools installation Pointing pip3 to the "requirements file" eliminates the necessity for removing comments. --- diff --git a/util/release-tarball-comparison.sh b/util/release-tarball-comparison.sh index 4fdb3544661..ee006aaf2fd 100755 --- a/util/release-tarball-comparison.sh +++ b/util/release-tarball-comparison.sh @@ -74,7 +74,7 @@ run_in_container "git -c advice.detachedHead=false clone --branch v${BIND_VERSIO cd bind9 && \ apt-get -y install --no-install-recommends python3-pip && \ rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED && \ - pip3 install \$(awk '!/^#/ { printf \"%s \", \$0 }' doc/arm/requirements.txt) && \ + pip3 install -r doc/arm/requirements.txt && \ if [ $(echo "${BIND_VERSION}" | cut -b 1-5) = 9.16. ]; then \ git archive --prefix=${BIND_DIRECTORY}/ --output=${BIND_DIRECTORY}.tar HEAD && \ mkdir ${BIND_DIRECTORY} && \