From 1fb863a0e78daa33982a2c6d2cf3db8fd62f9dae Mon Sep 17 00:00:00 2001 From: waltje Date: Sun, 21 Apr 2019 16:29:14 -0500 Subject: [PATCH] Updated MinGW makefile to properly define the STRIP utility. --- src/win/mingw/Makefile.MinGW | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/win/mingw/Makefile.MinGW b/src/win/mingw/Makefile.MinGW index 8b6e3d5..183df88 100644 --- a/src/win/mingw/Makefile.MinGW +++ b/src/win/mingw/Makefile.MinGW @@ -8,7 +8,7 @@ # # Makefile for Windows systems using the MinGW32 environment. # -# Version: @(#)Makefile.mingw 1.0.80 2019/04/20 +# Version: @(#)Makefile.mingw 1.0.81 2019/04/21 # # Author: Fred N. van Kempen, # @@ -300,6 +300,10 @@ ifneq ($(CROSS), n) endif PREPROC := /usr/bin/$(MINGW)-cpp WINDRES := /usr/bin/$(MINGW)-windres + STRIP := /usr/bin/$(MINGW)-strip + ifndef CAT + CAT := cat + endif SYSINC := -I/usr/$(MINGW)/include -Iwin/mingw/include SYSLIB := -L/usr/$(MINGW)/lib