From 77039c79ba278f1faeb2c916ef7c5a2143addf43 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Thu, 21 Dec 2023 21:54:26 +0100 Subject: [PATCH] Fix copy after rename --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dd51f43..97317cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,7 +99,7 @@ endif () file (COPY resources/sound DESTINATION share/planetblupi) file (COPY resources/music DESTINATION share/planetblupi) file (COPY LICENSE.all DESTINATION share/doc/planetblupi) -file (COPY COPYING DESTINATION share/doc/planetblupi) +file (COPY CREDITS DESTINATION share/doc/planetblupi) file (RENAME "${CMAKE_BINARY_DIR}/share/doc/planetblupi/LICENSE.all" "${CMAKE_BINARY_DIR}/share/doc/planetblupi/copyright") @@ -351,7 +351,7 @@ if (NOT BUILD_JS) install (DIRECTORY resources/sound DESTINATION share/planetblupi) install (DIRECTORY resources/music DESTINATION share/planetblupi) install (FILES LICENSE.all DESTINATION share/doc/planetblupi RENAME copyright) - install (FILES COPYING DESTINATION share/doc/planetblupi) + install (FILES CREDITS DESTINATION share/doc/planetblupi) if (BUILD_LINUX) install (DIRECTORY resources/icon/hicolor DESTINATION share/icons)