diff options
-rw-r--r-- | testsuite/mk/boilerplate.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/testsuite/mk/boilerplate.mk b/testsuite/mk/boilerplate.mk index c38bf854fa..4c32f30ee2 100644 --- a/testsuite/mk/boilerplate.mk +++ b/testsuite/mk/boilerplate.mk @@ -219,8 +219,14 @@ CP = cp RM = rm -f PYTHON = python3 +ifeq "$(CHECK_API_ANNOTATIONS)" "" CHECK_API_ANNOTATIONS := $(abspath $(TOP)/../inplace/bin/check-api-annotations) -CHECK_PPR := $(abspath $(TOP)/../inplace/bin/check-ppr) +endif + +ifeq "$(CHECK_PPR)" "" +CHECK_PPR := $(abspath $(TOP)/../inplace/bin/check-ppr) +endif + # ----------------------------------------------------------------------------- # configuration of TEST_HC |