Browse Source

Add msg as prerequisite for compiler to fix 'make distclean all' failure

Pierre Muller 11 months ago
parent
commit
94d7aeb998
2 changed files with 2 additions and 2 deletions
  1. 1 1
      compiler/Makefile
  2. 1 1
      compiler/Makefile.fpc

+ 1 - 1
compiler/Makefile

@@ -5114,7 +5114,7 @@ $(SYMLINKINSTALL_TARGETS):
 alltargets: $(ALLTARGETS)
 alltargets: $(ALLTARGETS)
 .PHONY: all compiler echotime ppuclean execlean clean distclean
 .PHONY: all compiler echotime ppuclean execlean clean distclean
 all: compiler $(addsuffix _all,$(TARGET_DIRS))
 all: compiler $(addsuffix _all,$(TARGET_DIRS))
-compiler: $(COMPILER_UNITTARGETDIR) $(COMPILER_TARGETDIR) $(EXENAME)
+compiler: msg $(COMPILER_UNITTARGETDIR) $(COMPILER_TARGETDIR) $(EXENAME)
 ifeq ($(MAKELEVEL),0)
 ifeq ($(MAKELEVEL),0)
 ifndef STARTTIME
 ifndef STARTTIME
 ifdef DATE
 ifdef DATE

+ 1 - 1
compiler/Makefile.fpc

@@ -726,7 +726,7 @@ alltargets: $(ALLTARGETS)
 
 
 all: compiler $(addsuffix _all,$(TARGET_DIRS))
 all: compiler $(addsuffix _all,$(TARGET_DIRS))
 
 
-compiler: $(COMPILER_UNITTARGETDIR) $(COMPILER_TARGETDIR) $(EXENAME)
+compiler: msg $(COMPILER_UNITTARGETDIR) $(COMPILER_TARGETDIR) $(EXENAME)
 
 
 ifeq ($(MAKELEVEL),0)
 ifeq ($(MAKELEVEL),0)
 ifndef STARTTIME
 ifndef STARTTIME