diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-04-10 10:08:47 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-04-10 10:08:47 +0000 |
commit | 9c470b63b35b21fe97b1f8d394cfed8ebb73868b (patch) | |
tree | 1e45158df0154fd839e497f190dad5351acdcdd7 /scripts/config | |
parent | e2f8f72041757098c1986eceedd583e1191a6a2d (diff) | |
download | mtk-20170518-9c470b63b35b21fe97b1f8d394cfed8ebb73868b.zip mtk-20170518-9c470b63b35b21fe97b1f8d394cfed8ebb73868b.tar.gz mtk-20170518-9c470b63b35b21fe97b1f8d394cfed8ebb73868b.tar.bz2 |
cygwin also needs to be passed LIBS=-lncurses to link lxdialog successfully
SVN-Revision: 15183
Diffstat (limited to 'scripts/config')
-rw-r--r-- | scripts/config/lxdialog/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/config/lxdialog/Makefile b/scripts/config/lxdialog/Makefile index aed08e0..3758637 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 |