From 0ba19cce4d66e63bcfe64de7ab9a4d107261645d Mon Sep 17 00:00:00 2001 From: thez3ro Date: Thu, 16 Mar 2017 23:34:28 +0100 Subject: [PATCH] fix wordlist file install --- share/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/CMakeLists.txt b/share/CMakeLists.txt index 4ae4c5f09..9660d7509 100644 --- a/share/CMakeLists.txt +++ b/share/CMakeLists.txt @@ -15,7 +15,8 @@ add_subdirectory(translations) -install(FILES wordlists/*.wordlist DESTINATION ${DATA_INSTALL_DIR}/wordlists) +file(GLOB wordlists_files "wordlists/*.wordlist") +install(FILES ${wordlists_files} DESTINATION ${DATA_INSTALL_DIR}/wordlists) file(GLOB DATABASE_ICONS icons/database/*.png)