Merge "Use std::sync::OnceLock rather than once_cell." into main
diff --git a/tools/check_elf_alignment.sh b/tools/check_elf_alignment.sh
index 1defcca..5c1f723 100755
--- a/tools/check_elf_alignment.sh
+++ b/tools/check_elf_alignment.sh
@@ -97,7 +97,7 @@
   [[ $(file "${match}") == *"ELF"* ]] || continue
 
   res="$(objdump -p "${match}" | grep LOAD | awk '{ print $NF }' | head -1)"
-  if [[ $res =~ 2**(1[4-9]|[2-9][0-9]|[1-9][0-9]{2,}) ]]; then
+  if [[ $res =~ 2\*\*(1[4-9]|[2-9][0-9]|[1-9][0-9]{2,}) ]]; then
     echo -e "${match}: ${GREEN}ALIGNED${ENDCOLOR} ($res)"
   else
     echo -e "${match}: ${RED}UNALIGNED${ENDCOLOR} ($res)"