From: Florian Fainelli Date: Fri, 10 Apr 2009 10:08:47 +0000 (+0000) Subject: cygwin also needs to be passed LIBS=-lncurses to link lxdialog successfully X-Git-Tag: reboot~23995 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=9c470b63b35b21fe97b1f8d394cfed8ebb73868b;hp=e2f8f72041757098c1986eceedd583e1191a6a2d cygwin also needs to be passed LIBS=-lncurses to link lxdialog successfully SVN-Revision: 15183 --- diff --git a/scripts/config/lxdialog/Makefile b/scripts/config/lxdialog/Makefile index aed08e0170..3758637ccf 100644 --- a/scripts/config/lxdialog/Makefile +++ b/scripts/config/lxdialog/Makefile @@ -13,8 +13,9 @@ OS := $(shell uname -s) ifeq ($(strip $(OS)),OpenBSD) LIBS := -lncurses endif - - +ifeq ($(strip $(OS)),CYGWIN_NT-5.1) +LIBS := -lncurses +endif always := $(hostprogs-y) dochecklxdialog %.o: %.c