From 275dbd14e8e1b9ceafce89d1395fb0a00b47637c Mon Sep 17 00:00:00 2001 From: "LAPTOP-NV8MPI8C\\Yuvan Wickramasinghe" Date: Thu, 27 Mar 2025 15:42:00 -0700 Subject: [PATCH] Check custom build properties before outputting error message. --- IDE/src/IDEApp.bf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/IDE/src/IDEApp.bf b/IDE/src/IDEApp.bf index 98c98d80..95b6bc02 100644 --- a/IDE/src/IDEApp.bf +++ b/IDE/src/IDEApp.bf @@ -11062,7 +11062,9 @@ namespace IDE String errorString = scope String(); if (!DoResolveConfigString(platformName, workspaceOptions, project, options, configString, errorString, outResult)) { - OutputErrorLine("Invalid macro in {0}: {1}", errorContext, errorString); + if (!CustomBuildProperties.Contains(errorString)) + OutputErrorLine("Invalid macro in {0}: {1}", errorContext, errorString); + return false; } return true;