aboutsummaryrefslogtreecommitdiff
path: root/openmp
diff options
context:
space:
mode:
authorSebastian Neubauer <Sebastian.Neubauer@amd.com>2022-07-28 14:34:59 +0200
committerSebastian Neubauer <Sebastian.Neubauer@amd.com>2022-07-28 14:35:04 +0200
commit50716ba2b337afe46ac256cc91673dc27356a776 (patch)
tree3b33fe238d8e32414ff63c12eb2379d08a7f8090 /openmp
parent7920805b27fd193293aa9f174983ef50758b2929 (diff)
downloadllvm-50716ba2b337afe46ac256cc91673dc27356a776.zip
llvm-50716ba2b337afe46ac256cc91673dc27356a776.tar.gz
llvm-50716ba2b337afe46ac256cc91673dc27356a776.tar.bz2
[CMake][OpenMP] Remove wrong backslash
outdir is defined in the line above, it will not exist in the install command, so it should not be escaped.
Diffstat (limited to 'openmp')
-rw-r--r--openmp/runtime/src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/src/CMakeLists.txt b/openmp/runtime/src/CMakeLists.txt
index 02f65aa..9bc8837d 100644
--- a/openmp/runtime/src/CMakeLists.txt
+++ b/openmp/runtime/src/CMakeLists.txt
@@ -380,7 +380,7 @@ else()
extend_path(outdir "${CMAKE_INSTALL_PREFIX}" "${OPENMP_INSTALL_LIBDIR}")
install(CODE "execute_process(COMMAND \"\${CMAKE_COMMAND}\" -E create_symlink \"${LIBOMP_LIB_FILE}\"
\"${alias}${LIBOMP_LIBRARY_SUFFIX}\" WORKING_DIRECTORY
- \"\$ENV{DESTDIR}\${outdir}\")")
+ \"\$ENV{DESTDIR}${outdir}\")")
endforeach()
endif()
endif()