Skip to content

Commit b4eca60

Browse files
authored
Merge pull request #1194 from openziti/lowercase.bundle.arch
lower-case arch in bundle name
2 parents 6914504 + e6238ff commit b4eca60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ if(CMAKE_SYSTEM_PROCESSOR STREQUAL AMD64)
148148
elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL aarch64)
149149
set(bundle_processor "arm64")
150150
else()
151-
set(bundle_processor ${CMAKE_SYSTEM_PROCESSOR})
151+
string(TOLOWER ${CMAKE_SYSTEM_PROCESSOR} bundle_processor)
152152
endif()
153153

154154
macro(BUNDLE_COMP comp)

0 commit comments

Comments
 (0)