diff options
Diffstat (limited to 'Tests/CPackTestAllGenerators/RunCPack.cmake')
-rw-r--r-- | Tests/CPackTestAllGenerators/RunCPack.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CPackTestAllGenerators/RunCPack.cmake b/Tests/CPackTestAllGenerators/RunCPack.cmake index eb33ff4..e0c241e 100644 --- a/Tests/CPackTestAllGenerators/RunCPack.cmake +++ b/Tests/CPackTestAllGenerators/RunCPack.cmake @@ -14,13 +14,13 @@ execute_process(COMMAND ${cpack} --help ERROR_VARIABLE stderr WORKING_DIRECTORY ${dir}) -string(REPLACE ";" "\\;" stdout ${stdout}) -string(REPLACE "\n" "E;" stdout ${stdout}) +string(REPLACE ";" "\\;" stdout "${stdout}") +string(REPLACE "\n" "E;" stdout "${stdout}") set(collecting 0) set(generators) foreach(eline ${stdout}) - string(REGEX REPLACE "^(.*)E$" "\\1" line ${eline}) + string(REGEX REPLACE "^(.*)E$" "\\1" line "${eline}") if(collecting AND NOT line STREQUAL "") string(REGEX REPLACE "^ ([^ ]+) += (.*)$" "\\1" gen "${line}") string(REGEX REPLACE "^ ([^ ]+) += (.*)$" "\\2" doc "${line}") |