summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-02-01 18:29:51 (GMT)
committerBrad King <brad.king@kitware.com>2021-02-03 16:35:31 (GMT)
commitb6071c93f556a2ee1ad30eae0f3a1dbbb5b5a1d7 (patch)
treeb5057dae0a34d439afaa0f51293a56acf2e3b409 /Source/cmFileCommand.cxx
parentc28dbd7e308968089bf97df71d4fd74c99e718f1 (diff)
downloadCMake-b6071c93f556a2ee1ad30eae0f3a1dbbb5b5a1d7.zip
CMake-b6071c93f556a2ee1ad30eae0f3a1dbbb5b5a1d7.tar.gz
CMake-b6071c93f556a2ee1ad30eae0f3a1dbbb5b5a1d7.tar.bz2
Rename CMAKE_USE_ELF_PARSER to CMake_USE_ELF_PARSER
We use the `CMake_` prefix for options affecting CMake itself.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r--Source/cmFileCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx
index 031e0d7..f674833 100644
--- a/Source/cmFileCommand.cxx
+++ b/Source/cmFileCommand.cxx
@@ -64,7 +64,7 @@
# include "cmFileLockResult.h"
#endif
-#if defined(CMAKE_USE_ELF_PARSER)
+#if defined(CMake_USE_ELF_PARSER)
# include "cmELF.h"
#endif
@@ -1198,7 +1198,7 @@ bool HandleReadElfCommand(std::vector<std::string> const& args,
return false;
}
-#if defined(CMAKE_USE_ELF_PARSER)
+#if defined(CMake_USE_ELF_PARSER)
cmELF elf(fileNameArg.c_str());
if (!arguments.RPath.empty()) {