diff options
author | fuzzard <fuzzard@kodi.tv> | 2024-03-11 19:55:39 +1000 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2024-03-12 09:04:02 +1000 |
commit | a44f1bedc2b46435eb03e6568751b8567dfa6d74 (patch) | |
tree | c889afa5aecd056a75f29d6a001260181868f471 /cmake | |
parent | e82c3f9bad5b6f42b4592951179607c90636704f (diff) |
[cmake] UWP fix escaping generate-UWP-pythonfix script
Diffstat (limited to 'cmake')
-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") |