From 864f66a1c002d58c223dc923e732d4093452c383 Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Thu, 23 Mar 2017 20:34:27 +0500 Subject: [PATCH] Makefile: using generic windres if specific one is not present in mingw platform --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3876d27b..72de9b1c 100644 --- a/Makefile +++ b/Makefile @@ -530,9 +530,11 @@ ifdef MINGW CC=gcc endif - ifndef WINDRES - WINDRES=windres - endif + endif + + # using generic windres if specific one is not present + ifndef WINDRES + WINDRES=windres endif ifeq ($(CC),)