From b8c5f08e753d1af97c2e6c2e2597a763af5299f7 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 29 Jun 2021 11:13:44 -0400 Subject: [PATCH] improve error message --- cmake/Modules/LAMMPSUtils.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/LAMMPSUtils.cmake b/cmake/Modules/LAMMPSUtils.cmake index 6cb23db12a..74102ab244 100644 --- a/cmake/Modules/LAMMPSUtils.cmake +++ b/cmake/Modules/LAMMPSUtils.cmake @@ -67,7 +67,7 @@ endfunction() macro(pkg_depends PKG1 PKG2) if(PKG_${PKG1} AND NOT (PKG_${PKG2} OR BUILD_${PKG2})) - message(FATAL_ERROR "${PKG1} package needs LAMMPS to be build with ${PKG2}") + message(FATAL_ERROR "The ${PKG1} package needs LAMMPS to be build with the ${PKG2} package") endif() endmacro()