Skip to content

Commit 2943b9a

Browse files
Fix extra space
Co-authored-by: Hubert Tong <[email protected]>
1 parent 387e3b1 commit 2943b9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/lib/abi/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function(cxx_abi_list_identifier result triple abi_library abi_version unstable
1818
string(REGEX REPLACE "freebsd[0-9]+\\.[0-9]+" "freebsd" triple "${triple}")
1919
elseif("${triple}" MATCHES "aix")
2020
# Ignore the V.R.M.F version string of aix targets.
21-
string(REGEX REPLACE "aix[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+" "aix" triple "${triple}")
21+
string(REGEX REPLACE "aix[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+" "aix" triple "${triple}")
2222
endif()
2323
list(APPEND abi_properties "${triple}")
2424
list(APPEND abi_properties "${abi_library}")

0 commit comments

Comments
 (0)