Fix build for MinGW due to deleted winpipes.cpp (#705)

On my MinGW-w64 setup, the build failed:

>mingw32-make: *** No rule to make target 'winpipes.o', needed by 'libcryptopp.a'.
>mingw32-make: Target 'default' not remade because of errors.

Looks like `winpipes.cpp` was removed in f2171cbe2 but not de-listed from the `GNUmakefile`. Remove it.
This commit is contained in:
Tanzinul Islam 2018-08-18 16:17:50 +01:00 committed by Jeffrey Walton
parent ef58e71d77
commit ea05f2fefd

View File

@ -771,7 +771,6 @@ SRCS := cryptlib.cpp cpu.cpp integer.cpp $(filter-out cryptlib.cpp cpu.cpp integ
INCL := $(filter-out resource.h,$(sort $(wildcard *.h)))
ifneq ($(IS_MINGW),0)
SRCS += winpipes.cpp
INCL += resource.h
endif