From fb72effde8c3dc9f09c40601bbf8885bfdd2d5a7 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 3 Apr 2014 19:12:29 +0100 Subject: [PATCH] Fix cygwin detection in Makefile --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 7ff4eb00..8fe4a46f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -19,7 +19,7 @@ else LIBS += -lncursesw endif -ifeq ($(os),Cygwin) +ifneq (,$(findstring CYGWIN,$(os))) LIBS += -lboost_regex-mt else ifeq ($(os),Darwin) LIBS += -lboost_regex-mt