From 4710639619f0446329d6af7dc1db79a130e8957a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BD=D0=B0=D0=B1?= Date: Tue, 1 Apr 2025 16:52:14 +0200 Subject: [PATCH] Fix: GNUmakefile error erroring without the error message on Win32 Ref !136839 --- GNUmakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 7c26add9481..bcedd5ec342 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -163,9 +163,10 @@ Information endef # HELP_TEXT (end) -# This makefile is not meant for Windows +# This makefile is not meant for Windows, +# Note that a TAB indent prevents the message from showing, no indentation is intended. ifeq ($(OS),Windows_NT) - $(error On Windows, use "cmd //c make.bat" instead of "make") +$(error On Windows, use "cmd //c make.bat" instead of "make") endif # System Vars