From 193c82e590591b7e62f4f8e37b1b5c4520cc4877 Mon Sep 17 00:00:00 2001 From: Piotr Dziwinski Date: Sat, 17 Oct 2015 17:41:47 +0200 Subject: [PATCH] Fix installing levels without Python found --- levels/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/levels/CMakeLists.txt b/levels/CMakeLists.txt index 34c35d04..edf43838 100644 --- a/levels/CMakeLists.txt +++ b/levels/CMakeLists.txt @@ -13,7 +13,7 @@ function(add_level_category level_category_dir) # Without Python, just install all files as they are if(NOT PYTHONINTERP_FOUND) - install(DIRECTORY ${add_level_category} DESTINATION ${LEVEL_INSTALL_DATA_DIR}) + install(DIRECTORY ${level_category_dir} DESTINATION ${LEVEL_INSTALL_DATA_DIR}) return() endif()