From b460e845c6b9535e8d381b8047a2b7d1a306116b Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Tue, 2 May 2023 01:59:06 -0400 Subject: [PATCH] Make windres verbose The error messages it emits elsewise are worthless --- src/win/Makefile.mingw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/Makefile.mingw b/src/win/Makefile.mingw index c0077abc2..0aa08d267 100644 --- a/src/win/Makefile.mingw +++ b/src/win/Makefile.mingw @@ -876,7 +876,7 @@ all: $(PROG).exe 86Box.res: 86Box.rc @echo Processing $< - @$(WINDRES) $(RFLAGS) $(EXTRAS) -i $< -o 86Box.res + @$(WINDRES) -v $(RFLAGS) $(EXTRAS) -i $< -o 86Box.res $(PROG).exe: $(OBJ) 86Box.res @echo Linking $(PROG).exe ..