From 7e7a23293b165313412771997fceda376c1e57eb Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Sun, 23 May 2021 14:37:22 +0100 Subject: [PATCH] Fix double negative in 'No CMake binary not found' --- mesonbuild/dependencies/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py index ce2a2c57b..225280093 100644 --- a/mesonbuild/dependencies/base.py +++ b/mesonbuild/dependencies/base.py @@ -1096,7 +1096,7 @@ class CMakeDependency(ExternalDependency): self.cmakebin = CMakeExecutor(environment, CMakeDependency.class_cmake_version, self.for_machine, silent=self.silent) if not self.cmakebin.found(): self.cmakebin = None - msg = f'No CMake binary for machine {self.for_machine} not found. Giving up.' + msg = f'CMake binary for machine {self.for_machine} not found. Giving up.' if self.required: raise DependencyException(msg) mlog.debug(msg)