From ff79d1e2a094b5e85132e918d060643bd8fdacc9 Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Fri, 18 Jul 2014 18:31:03 +0400 Subject: [PATCH] Fix mingw/cygwin detection in shlr --- shlr/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shlr/Makefile b/shlr/Makefile index ef85a35d9f..afa1893a17 100644 --- a/shlr/Makefile +++ b/shlr/Makefile @@ -23,7 +23,7 @@ SDB_URL=git://github.com/radare/sdb PWD=$(shell pwd) SDB_CONFIG=${PWD}/sdb-config.mk -ifneq (,$(findstring CYGWIN,${OSTYPE})$(findstring MINGW32,${OSTYPE})) +ifneq (,$(findstring cygwin,${OSTYPE})$(findstring mingw32,${OSTYPE})) CFLAGS_SHARED= else CFLAGS_SHARED=-fPIC