mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +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:
@@ -124,7 +124,7 @@ PERL=$(command -v "@PERL@")
|
|||||||
# Windows process management leave empty
|
# Windows process management leave empty
|
||||||
PSSUSPEND=
|
PSSUSPEND=
|
||||||
|
|
||||||
PYTHON=$(command -v "@PYTHON@")
|
PYTHON=$(command -v "@PYTHON@" || true)
|
||||||
PYTEST=@PYTEST@
|
PYTEST=@PYTEST@
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user