Skip to content
Snippets Groups Projects
Commit 32ab3b96 authored by Florian Fainelli's avatar Florian Fainelli
Browse files

do not check for a specific Cygwin version, rather check the operating system...

do not check for a specific Cygwin version, rather check the operating system name directly, thanks AndyI

SVN-Revision: 17394
parent 241242cf
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,7 @@ LIBS := $(shell sh check-lxdialog.sh -ldflags gcc) ...@@ -12,8 +12,7 @@ LIBS := $(shell sh check-lxdialog.sh -ldflags gcc)
OS := $(shell uname -s) OS := $(shell uname -s)
ifeq ($(strip $(OS)),OpenBSD) ifeq ($(strip $(OS)),OpenBSD)
LIBS := -lncurses LIBS := -lncurses
endif ifeq ($(shell uname -o),Cygwin)
ifeq ($(strip $(OS)),CYGWIN_NT-5.1)
LIBS := -lncurses LIBS := -lncurses
endif endif
always := $(hostprogs-y) dochecklxdialog always := $(hostprogs-y) dochecklxdialog
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment