diff options
| author | Chris Bieneman <beanz@apple.com> | 2016-11-10 21:30:16 +0000 |
|---|---|---|
| committer | Chris Bieneman <beanz@apple.com> | 2016-11-10 21:30:16 +0000 |
| commit | 1778f69f4492d6d0b1be45186bbe2d2d1e6110fa (patch) | |
| tree | 20286742b2d2ddfb94eec4d6e9230ceff6e5c367 /lldb/cmake/modules | |
| parent | 9d62c5571bd435e087be5247caed530247faf552 (diff) | |
| download | bcm5719-llvm-1778f69f4492d6d0b1be45186bbe2d2d1e6110fa.tar.gz bcm5719-llvm-1778f69f4492d6d0b1be45186bbe2d2d1e6110fa.zip | |
Fixing the Xcode build that I broke in r286479
Since Xcode can't seem to handle quotes in preprocessor definitions, I've changed the build to assume that the define is unquoted. This should fix the failing Darwin bots.
llvm-svn: 286504
Diffstat (limited to 'lldb/cmake/modules')
| -rw-r--r-- | lldb/cmake/modules/EmbedAppleVersion.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/cmake/modules/EmbedAppleVersion.cmake b/lldb/cmake/modules/EmbedAppleVersion.cmake index caa3be06759..57f5eba45e4 100644 --- a/lldb/cmake/modules/EmbedAppleVersion.cmake +++ b/lldb/cmake/modules/EmbedAppleVersion.cmake @@ -3,7 +3,7 @@ execute_process(COMMAND /usr/libexec/PlistBuddy -c "Print:CFBundleVersion" ${LLD OUTPUT_STRIP_TRAILING_WHITESPACE) file(APPEND "${HEADER_FILE}.tmp" - "#define LLDB_VERSION_STRING \"lldb-${BundleVersion}\"\n") + "#define LLDB_VERSION_STRING lldb-${BundleVersion}\n") execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different "${HEADER_FILE}.tmp" "${HEADER_FILE}") |

