From 74dba0c90a1d383ea6e0833e4dd8fbbe835a3ac9 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sat, 9 Apr 2022 20:03:36 +0200 Subject: [PATCH] Fix missing braces from previous commit (PR3600) --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 57ea80568..d68b12d87 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -6,7 +6,7 @@ if (CMAKE_Fortran_COMPILER_ID STREQUAL GNU) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-tree-vectorize") endif() if (CMAKE_Fortran_COMPILER_ID STREQUAL Flang) - set(CMAKE_Fortran_FLAGS "$CMAKE_Fortran_FLAGS -O2") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2") endif() if (BUILD_SINGLE)