2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

PYTHON may be null

When Python is not present, PYTHON=$(command -v "@PYTHON@") will exit
the script with 1, prevent that by adding "|| true".
This commit is contained in:
Mark Andrews
2020-12-16 13:50:57 +11:00
parent f1a097964c
commit 09f00ad5dd

View File

@@ -124,7 +124,7 @@ PERL=$(command -v "@PERL@")
# Windows process management leave empty
PSSUSPEND=
PYTHON=$(command -v "@PYTHON@")
PYTHON=$(command -v "@PYTHON@" || true)
PYTEST=@PYTEST@
#