From 1c03f6175a54112dfe11a5f5342d19304015f10c Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Fri, 5 Aug 2022 18:43:48 +0200 Subject: [PATCH] fix, wrong diagnostic output when a makefile rule is already geing processed --- src/u_makeproject.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/u_makeproject.pas b/src/u_makeproject.pas index aa54122d..a39ff39d 100644 --- a/src/u_makeproject.pas +++ b/src/u_makeproject.pas @@ -529,7 +529,7 @@ var begin if fMakeProc.isAssigned and fMakeProc.Active then begin - fMsgs.message('the project is already being processed by DUB', fAsProjectItf, amcProj, amkWarn); + fMsgs.message('the project is already being compiled by make', fAsProjectItf, amcProj, amkWarn); exit; end; killProcess(fMakeProc);