Skip to content

Commit decbd39

Browse files
committedMay 16, 2016
Really fix ncurses lookup on Arch Linux
Commit 27ee8d8 forgot to add the paths without ncursesw/ to the find_path() call
1 parent 7a828de commit decbd39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎cmake/Modules/FindNcursesw.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ if(CURSES_USE_NCURSESW)
115115
get_filename_component(_cursesParentDir "${_cursesLibDir}" PATH)
116116

117117
find_path(CURSES_INCLUDE_PATH
118-
NAMES ncursesw/ncurses.h ncursesw/curses.h
118+
NAMES ncursesw/ncurses.h ncursesw/curses.h ncurses.h curses.h
119119
HINTS "${_cursesParentDir}/include"
120120
)
121121

0 commit comments

Comments
 (0)
Please sign in to comment.