diff options
| author | Allen Winter <winter@kde.org> | 2020-10-31 15:58:24 -0400 | 
|---|---|---|
| committer | Allen Winter <winter@kde.org> | 2020-10-31 15:58:24 -0400 | 
| commit | f1bf6bd813bebb2d95cdfb404bc5406be87814ae (patch) | |
| tree | df410bde5f9c0ebd93819d45919bb7471c79e55b | |
| parent | a670c57c193c8632bd6d12bdf1afd237b5d753a3 (diff) | |
| download | extra-cmake-modules-f1bf6bd813bebb2d95cdfb404bc5406be87814ae.tar.gz extra-cmake-modules-f1bf6bd813bebb2d95cdfb404bc5406be87814ae.tar.bz2 | |
find-modules/FindReuseTool.cmake - Fix finding reuse tool
I had reuse installed but it wasn't being found. Now it is.
| -rw-r--r-- | find-modules/FindReuseTool.cmake | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/find-modules/FindReuseTool.cmake b/find-modules/FindReuseTool.cmake index 9377f49e..adceeeb9 100644 --- a/find-modules/FindReuseTool.cmake +++ b/find-modules/FindReuseTool.cmake @@ -3,8 +3,8 @@  # Finds the REUSE Tool by FSFE: https://github.com/fsfe/reuse-tool  # -#  REUSE_TOOL_FOUND      - True if REUSE tool is found. -#  REUSE_TOOL_EXECUTABLE - Path to executable +#  REUSETOOL_FOUND      - True if REUSE tool is found. +#  REUSETOOL_EXECUTABLE - Path to executable  #=============================================================================  # SPDX-FileCopyrightText: 2020 Andreas Cord-Landwehr <cordlandwehr@kde.org> @@ -19,5 +19,5 @@ find_package_handle_standard_args(ReuseTool      FOUND_VAR          REUSETOOL_FOUND      REQUIRED_VARS -        REUSE_TOOL_EXECUTABLE +        REUSETOOL_EXECUTABLE  ) | 
