From: Joel Rosdahl Date: Tue, 23 Aug 2022 19:57:21 +0000 (+0200) Subject: build: Improve descriptions of installation variables X-Git-Tag: v4.7~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dd926348e4126e6df2f625a9fb7445232e490239;p=thirdparty%2Fccache.git build: Improve descriptions of installation variables --- diff --git a/cmake/InstallDirs.cmake b/cmake/InstallDirs.cmake index eb719ccc4..f258a1948 100644 --- a/cmake/InstallDirs.cmake +++ b/cmake/InstallDirs.cmake @@ -32,10 +32,10 @@ if(WIN32) set(CMAKE_INSTALL_SYSCONFDIR "${CMAKE_INSTALL_SYSCONFDIR}" CACHE PATH "System-wide config file location" FORCE) endif() - set(CMAKE_INSTALL_BINDIR "" CACHE PATH "executables subdirectory" FORCE) - set(CMAKE_INSTALL_SBINDIR "" CACHE PATH "system administration executables subdirectory" FORCE) - set(CMAKE_INSTALL_LIBEXECDIR "" CACHE PATH "dependent executables subdirectory" FORCE) - set(CMAKE_INSTALL_LIBDIR "" CACHE PATH "object libraries subdirectory" FORCE) + set(CMAKE_INSTALL_BINDIR "" CACHE PATH "user executables directory" FORCE) + set(CMAKE_INSTALL_SBINDIR "" CACHE PATH "system administration executables directory" FORCE) + set(CMAKE_INSTALL_LIBEXECDIR "" CACHE PATH "program executables directory" FORCE) + set(CMAKE_INSTALL_LIBDIR "" CACHE PATH "object libraries directory" FORCE) endif() include(GNUInstallDirs)