Skip to content

Commit

Permalink
CMake: Fix typo in FindReadline.cmake (PR #720, fixes #719)
Browse files Browse the repository at this point in the history
Fixes a small typo introduced in #707.
  • Loading branch information
iq2luc committed Jan 21, 2021
1 parent 0c10935 commit d52dedf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Externals/cmake/FindReadline.cmake
Expand Up @@ -13,7 +13,7 @@ find_path(READLINE_INCLUDE_DIR readline/readline.h
HINTS ${PC_READLINE_INCLUDEDIR} ${PC_READLINE_INCLUDE_DIRS}
PATH_SUFFIXES Readline)

find_library(READLINE_LIBRARY NAMES Readline
find_library(READLINE_LIBRARY NAMES readline
HINTS ${PC_READLINE_LIBDIR} ${PC_READLINE_LIBRARY_DIRS})

set(READLINE_LIBRARIES ${READLINE_LIBRARY})
Expand Down

0 comments on commit d52dedf

Please sign in to comment.