summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-05-27 17:18:55 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-05-27 17:18:55 +0200
commitc12b595892e3231182239998f6561bd6556a9947 (patch)
tree051ca60345634b96d6e7e5498c04889046b51156
parente42433d7127f9a50b5dae57fff331ecfdc9883c4 (diff)
search for ncurses headers in default cygwin location
-rw-r--r--scripts/scan-tools.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh
index 89e368d8b..256104f2b 100644
--- a/scripts/scan-tools.sh
+++ b/scripts/scan-tools.sh
@@ -184,9 +184,11 @@ fi
if [[ ! -s /usr/include/ncurses.h ]]; then
if [[ ! -s /usr/include/curses.h ]]; then
- echo Install ncurses header files, please.
- echo
- out=1
+ if [[ ! -s /usr/include/ncurses/ncurses.h ]]; then
+ echo Install ncurses header files, please.
+ echo
+ out=1
+ fi
fi
fi