mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04: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:
parent
f1a097964c
commit
09f00ad5dd
1 changed files with 1 additions and 1 deletions
|
|
@ -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@
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue