From 4feb79cff48fd3759ed7ccb52aa15339a3964cb7 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 19 Jan 2016 15:39:05 -0800 Subject: [PATCH] fix message for no code signing on production --- cmake/macros/OptionalWinExecutableSigning.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/macros/OptionalWinExecutableSigning.cmake b/cmake/macros/OptionalWinExecutableSigning.cmake index 6b4534f1ac..784aae716f 100644 --- a/cmake/macros/OptionalWinExecutableSigning.cmake +++ b/cmake/macros/OptionalWinExecutableSigning.cmake @@ -28,7 +28,7 @@ macro(optional_win_executable_signing) message(FATAL_ERROR "HF_PFX_PASSPHRASE must be set for executables to be signed.") endif () else () - message(WARNING "Producing a production build or PR build but not code signing since HF_PFX_FILE is not set.") + message(WARNING "Creating a production build but not code signing since HF_PFX_FILE is not set.") endif () endif () endmacro()