Fix installing levels without Python found

coolant-mod
Piotr Dziwinski 2015-10-17 17:41:47 +02:00
parent 4ecbafd960
commit 193c82e590
1 changed files with 1 additions and 1 deletions

View File

@ -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()