You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmake/debian/patches/upstream/0002-fix-typo-in-Fortran_PR...

25 lines
1012 B

From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Tue, 25 Jul 2023 16:38:44 +0200
Subject: fix typo in Fortran_PREPROCESS property initialization
Origin: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8654
Bug: https://gitlab.kitware.com/cmake/cmake/-/issues/25123
Bug-Debian: https://bugs.debian.org/1041853
---
Source/cmTarget.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 81497f5..b53adf8 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -420,7 +420,7 @@ TargetProperty const StaticTargetProperties[] = {
{ "Fortran_FORMAT"_s, IC::CanCompileSources },
{ "Fortran_MODULE_DIRECTORY"_s, IC::CanCompileSources },
{ "Fortran_COMPILER_LAUNCHER"_s, IC::CanCompileSources },
- { "Fortran_PREPRPOCESS"_s, IC::CanCompileSources },
+ { "Fortran_PREPROCESS"_s, IC::CanCompileSources },
{ "Fortran_VISIBILITY_PRESET"_s, IC::CanCompileSources },
// ---- HIP
COMMON_LANGUAGE_PROPERTIES(HIP),