build CHANGE remove parameter -s in abi-check

The -s parameter is far too strict. This is undesirable, for example,
when the function parameter name is changed, which does not affect
binary or source compatibility, but abi-check ends with an error.
diff --git a/CMakeModules/ABICheck.cmake b/CMakeModules/ABICheck.cmake
index 814c5f9..d5f305b 100644
--- a/CMakeModules/ABICheck.cmake
+++ b/CMakeModules/ABICheck.cmake
@@ -58,7 +58,7 @@
             COMMAND bash ./abibase.sh
             COMMAND ${ABI_CHECKER} -l lib${LIB_TARGET}${CMAKE_SHARED_LIBRARY_SUFFIX}
             -old abibase/build/lib${LIB_TARGET}.*.dump
-            -new ./lib${LIB_TARGET}.${LIB_SOVERSION_FULL}.dump -s
+            -new ./lib${LIB_TARGET}.${LIB_SOVERSION_FULL}.dump
             DEPENDS ${LIB_TARGET} abi-dump
             BYPRODUCTS ${CMAKE_BINARY_DIR}/compat_reports/lib${LIB_TARGET}${CMAKE_SHARED_LIBRARY_SUFFIX}/*_to_${LIB_SOVERSION_FULL}/compat_report.html
             WORKING_DIRECTORY ${CMAKE_BINARY_DIR}