Skip to content

Commit

Permalink
Really fix ncurses lookup on Arch Linux
Browse files Browse the repository at this point in the history
Commit 27ee8d8 forgot to add the paths
without ncursesw/ to the find_path() call
  • Loading branch information
sfan5 committed May 16, 2016
1 parent 7a828de commit decbd39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/Modules/FindNcursesw.cmake
Expand Up @@ -115,7 +115,7 @@ if(CURSES_USE_NCURSESW)
get_filename_component(_cursesParentDir "${_cursesLibDir}" PATH)

find_path(CURSES_INCLUDE_PATH
NAMES ncursesw/ncurses.h ncursesw/curses.h
NAMES ncursesw/ncurses.h ncursesw/curses.h ncurses.h curses.h
HINTS "${_cursesParentDir}/include"
)

Expand Down

0 comments on commit decbd39

Please sign in to comment.