Skip to content

Commit d76a326

Browse files
committed
Add missing braces
1 parent 4fabf50 commit d76a326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

toolchain/linux/gcc-toolchain.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ if(DEFINED ENV{ZLIB_ROOT})
3131
endif()
3232

3333
if("%target%" STREQUAL "aarch64-unknown-linux-gnu")
34-
set(CMAKE_C_FLAGS "$CMAKE_C_FLAGS -DAT_HWCAP2=26")
35-
set(CMAKE_CXX_FLAGS "$CMAKE_CXX_FLAGS -DAT_HWCAP2=26")
34+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DAT_HWCAP2=26")
35+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DAT_HWCAP2=26")
3636
endif()
3737

3838
get_cmake_property(_variableNames VARIABLES)

0 commit comments

Comments
 (0)