From a44f1bedc2b46435eb03e6568751b8567dfa6d74 Mon Sep 17 00:00:00 2001 From: fuzzard Date: Mon, 11 Mar 2024 19:55:39 +1000 Subject: [cmake] UWP fix escaping generate-UWP-pythonfix script --- cmake/scripts/windowsstore/Install.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- cgit v1.2.3