From: Florian Fainelli Date: Tue, 25 Aug 2009 09:16:03 +0000 (+0000) Subject: do not check for a specific Cygwin version, rather check the operating system name... X-Git-Tag: reboot~22579 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=32ab3b9692d4c875ed428c2713f4c95701734d32 do not check for a specific Cygwin version, rather check the operating system name directly, thanks AndyI SVN-Revision: 17394 --- diff --git a/scripts/config/lxdialog/Makefile b/scripts/config/lxdialog/Makefile index 3758637ccf..74ee942cd6 100644 --- a/scripts/config/lxdialog/Makefile +++ b/scripts/config/lxdialog/Makefile @@ -12,8 +12,7 @@ LIBS := $(shell sh check-lxdialog.sh -ldflags gcc) OS := $(shell uname -s) ifeq ($(strip $(OS)),OpenBSD) LIBS := -lncurses -endif -ifeq ($(strip $(OS)),CYGWIN_NT-5.1) +ifeq ($(shell uname -o),Cygwin) LIBS := -lncurses endif always := $(hostprogs-y) dochecklxdialog