cygwin also needs to be passed LIBS=-lncurses to link lxdialog successfully
SVN-Revision: 15183
This commit is contained in:
parent
e2f8f72041
commit
9c470b63b3
1 changed files with 3 additions and 2 deletions
|
@ -13,8 +13,9 @@ OS := $(shell uname -s)
|
||||||
ifeq ($(strip $(OS)),OpenBSD)
|
ifeq ($(strip $(OS)),OpenBSD)
|
||||||
LIBS := -lncurses
|
LIBS := -lncurses
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(strip $(OS)),CYGWIN_NT-5.1)
|
||||||
|
LIBS := -lncurses
|
||||||
|
endif
|
||||||
always := $(hostprogs-y) dochecklxdialog
|
always := $(hostprogs-y) dochecklxdialog
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
|
|
Loading…
Reference in a new issue