1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Match if / elseif properly

My last commit fumbled it.

llvm-svn: 368892
This commit is contained in:
JF Bastien 2019-08-14 18:01:11 +00:00
parent 310bb691c9
commit 509783bebc

View File

@ -20,7 +20,7 @@ endif()
set(LLVM_CXX_STD_default "c++14")
# Preserve behaviour of legacy cache variables
elseif (LLVM_ENABLE_CXX1Z)
if (LLVM_ENABLE_CXX1Z)
set(LLVM_CXX_STD_default "c++1z")
endif()
set(LLVM_CXX_STD ${LLVM_CXX_STD_default}