From df1abbcaefcd67d18e9111f21179a0d8e226b5d0 Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Wed, 9 Aug 2017 16:34:44 +0700 Subject: [PATCH] Prevent makejcldbg from blocking Delphi Starter --- windows/src/ext/jedi/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/windows/src/ext/jedi/Makefile b/windows/src/ext/jedi/Makefile index f05cd01ba9..68988b5b85 100644 --- a/windows/src/ext/jedi/Makefile +++ b/windows/src/ext/jedi/Makefile @@ -21,13 +21,13 @@ build-jcldbg: # It also needs to be called after make install cd $(EXT)\jedi\jcl\jcl\examples\windows\debug\tools +!IFDEF DELPHI_STARTER + $(DCC32) makejcldbg.dpr + $(COPY) ..\..\..\..\bin\makejcldbg.exe $(PROGRAM)\buildtools +!ELSE # We use a direct build to ignore platform warnings # as we don't control the source of this code -!IFDEF DELPHI_STARTER - start /wait $(MAKEDIR)\bds.exe -ns -b makejcldbg.dpr - $(COPY) ..\..\..\..\bin\makejcldbg.exe $(PROGRAM)\buildtools -!ELSE $(MAKEDIR)\dcc32.exe $(DELPHIDPRPARAMS) makejcldbg.dpr $(COPY) makejcldbg.exe $(PROGRAM)\buildtools !ENDIF