From cf9083bcbb4b5090b07579b2d2d35e878bb8ce55 Mon Sep 17 00:00:00 2001 From: DrSlony Date: Tue, 24 Jan 2012 20:53:13 +0000 Subject: [PATCH] Fixed a problem where the CAVEATS.txt file was not copied into the compiled dir in Linux. Wrong capitalization in CMakeLists.txt. Issue 1206 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 27dc2d455..de2a9a628 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -344,7 +344,7 @@ endif(USE_CLANG) install (FILES AUTHORS.txt DESTINATION ${CREDITSDIR}) install (FILES LICENSE.txt DESTINATION ${LICENCEDIR}) install (FILES AboutThisBuild.txt DESTINATION ${CREDITSDIR}) -install (FILES Caveats.txt DESTINATION ${CREDITSDIR} OPTIONAL) +install (FILES CAVEATS.txt DESTINATION ${CREDITSDIR} OPTIONAL) add_subdirectory (rtexif) add_subdirectory (rtengine)