BundleUtilities: Allow Info.plist files which use CR line endings
Convert \r to our internal end-of-line character just as we do \n. Signed-off-by: Tim Blechmann <tim@klingt.org>
This commit is contained in:
parent
6f0d1a38c8
commit
810f5ccefc
|
@ -237,6 +237,7 @@ function(get_bundle_main_executable bundle result_var)
|
|||
file(READ "${bundle}/Contents/Info.plist" info_plist)
|
||||
string(REPLACE ";" "\\;" info_plist "${info_plist}")
|
||||
string(REPLACE "\n" "${eol_char};" info_plist "${info_plist}")
|
||||
string(REPLACE "\r" "${eol_char};" info_plist "${info_plist}")
|
||||
|
||||
# Scan the lines for "<key>CFBundleExecutable</key>" - the line after that
|
||||
# is the name of the main executable.
|
||||
|
|
Loading…
Reference in New Issue