Skip to content

Commit 8c1301e

Browse files
committed
Fix coverity: use executable name 'cc' not full path with --template
1 parent dc64248 commit 8c1301e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/analysis/coverity/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ runs:
117117
118118
# Configure Coverity for gcc/g++/cc (template covers all variants)
119119
$HOME/coverity/bin/cov-configure --gcc
120-
# Also configure 'cc' explicitly since meson uses /usr/bin/cc
121-
$HOME/coverity/bin/cov-configure --compiler /usr/bin/cc --comptype gcc --template
120+
# Also configure 'cc' explicitly since meson uses cc
121+
$HOME/coverity/bin/cov-configure --compiler cc --comptype gcc --template
122122
123123
# Clean and setup meson build directory
124124
rm -rf build coverity_output

0 commit comments

Comments
 (0)