We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed2252 commit ffdeb83Copy full SHA for ffdeb83
1 file changed
cmake/developer_package/packaging/debian/post_build.cmake
@@ -22,7 +22,12 @@ endif()
22
set(lintian_passed ON)
23
24
foreach(deb_file IN LISTS CPACK_PACKAGE_FILES)
25
- execute_process(COMMAND "${lintian_PROGRAM}" ${deb_file}
+ execute_process(COMMAND "${lintian_PROGRAM}"
26
+ # absl stub/aggregation static libraries (e.g. libabsl_string_view.a)
27
+ # are intentionally code-free on modern platforms where the underlying
28
+ # types come from the C++ standard library. Suppress the false-positive.
29
+ --suppress-tags no-code-sections
30
+ ${deb_file}
31
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}"
32
RESULT_VARIABLE lintian_exit_code
33
OUTPUT_VARIABLE lintian_output)
0 commit comments