diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2024-03-12 10:09:01 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 10:09:01 +1000 |
commit | 0ed1149c01e1e076314d6cf60e54eb98e7417bc7 (patch) | |
tree | c889afa5aecd056a75f29d6a001260181868f471 | |
parent | e82c3f9bad5b6f42b4592951179607c90636704f (diff) | |
parent | a44f1bedc2b46435eb03e6568751b8567dfa6d74 (diff) |
Merge pull request #24839 from fuzzard/bp_cmake_uwp_python_generate_fix
[BP][cmake] UWP fix escaping generate-UWP-pythonfix script
-rw-r--r-- | cmake/scripts/windowsstore/Install.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/scripts/windowsstore/Install.cmake b/cmake/scripts/windowsstore/Install.cmake index 73b3905225..082f1af151 100644 --- a/cmake/scripts/windowsstore/Install.cmake +++ b/cmake/scripts/windowsstore/Install.cmake @@ -10,7 +10,7 @@ foreach(uwp_pythonlibinit_file \$\{uwp_pythonlibinit_foundfiles\}) file(SIZE \"\$\{uwp_pythonlibinit_file\}\" uwp_pythonlibinit_filesize) if(\$\{uwp_pythonlibinit_filesize\} EQUAL 0) message(\"Adding hash comment character in the following empty file: \$\{uwp_pythonlibinit_file\}\") - file(APPEND ${uwp_pythonlibinit_file} \"#\") + file(APPEND \$\{uwp_pythonlibinit_file\} \"#\") endif() endforeach()\n") |