diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-05-28 19:32:18 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-05-28 19:32:18 +0200 |
commit | f9de8d8c342c32acd7ba6272d7f9b651fbc2047d (patch) | |
tree | 1676c10e807c71baaa394632bffb05ee9343afb8 | |
parent | f7879a72454958b8de1200ee796fe4928b49c725 (diff) | |
parent | 9a841e2aed7b7e52958e5703215643dd3cf45ad0 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
-rw-r--r-- | scripts/scan-tools.sh | 8 |
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 |