From: Gunter Knauf Date: Mon, 5 Jul 2004 01:58:33 +0000 (+0000) Subject: try to relax linux build host detection. X-Git-Tag: upstream/7.37.1~12359 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dba40b35f29500e47e36e00d999d96bc781f4cf5;p=platform%2Fupstream%2Fcurl.git try to relax linux build host detection. --- diff --git a/ares/Makefile.netware b/ares/Makefile.netware index d7d03ef..e530f0c 100644 --- a/ares/Makefile.netware +++ b/ares/Makefile.netware @@ -132,7 +132,7 @@ ifdef XDCOPT XDCDATA = $(OBJDIR)/$(TARGET).xdc endif -ifeq ($(OSTYPE),linux) +ifeq ($(findstring linux,$(OSTYPE)),linux) DL = ' #-include $(NDKBASE)/nlmconv/ncpfs.inc endif diff --git a/lib/Makefile.netware b/lib/Makefile.netware index e0c763a..57920a0 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -150,7 +150,7 @@ ifdef XDCOPT XDCDATA = $(OBJDIR)/$(TARGET).xdc endif -ifeq ($(OSTYPE),linux) +ifeq ($(findstring linux,$(OSTYPE)),linux) DL = ' #-include $(NDKBASE)/nlmconv/ncpfs.inc endif diff --git a/src/Makefile.netware b/src/Makefile.netware index 6241a4e..a79500e 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -140,7 +140,7 @@ ifdef XDCOPT XDCDATA = $(OBJDIR)/$(TARGET).xdc endif -ifeq ($(OSTYPE),linux) +ifeq ($(findstring linux,$(OSTYPE)),linux) DL = ' #-include $(NDKBASE)/nlmconv/ncpfs.inc endif