From: Florian Fainelli Date: Fri, 10 Apr 2009 10:08:47 +0000 (+0000) Subject: [scripts] cygwin also needs to be passed LIBS=-lncurses to link lxdialog successfully X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=2d495c3e5fcb65ed0e72ae92c6aeb3f06d53d59e;p=15.05%2Fopenwrt.git [scripts] cygwin also needs to be passed LIBS=-lncurses to link lxdialog successfully git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15183 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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