From 17d107163e5e1ec1b8cfc1b0027d497e2cf2bb7a Mon Sep 17 00:00:00 2001 From: florian Date: Tue, 25 Aug 2009 09:16:03 +0000 Subject: [PATCH] [scripts] do not check for a specific Cygwin version, rather check the operating system name directly, thanks AndyI git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17394 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- scripts/config/lxdialog/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/config/lxdialog/Makefile b/scripts/config/lxdialog/Makefile index 3758637cc..74ee942cd 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 -- 2.35.1