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 f74cc9d commit 13fa8a4Copy full SHA for 13fa8a4
ChangeLog
@@ -13,6 +13,8 @@
13
* Make.defs: Add "-Wextra" to default CFLAGS. Add an option to
14
enable "-Werror" also.
15
16
+ * ci/run-build-and-tests.sh: Build with "-Werror" enabled on CI.
17
+
18
2021-09-25 Björn Esser <besser82 at fedoraproject.org>
19
20
* pam_tcb/support.c (_set_ctrl): Request automatic prefix only if
ci/run-build-and-tests.sh
@@ -30,7 +30,7 @@ nproc="$(nproc)" || nproc=1
30
j="-j$nproc"
31
32
CFLAGS='-O2 -Wall -W -DENABLE_SETFSUGID -DENABLE_NLS -DNLS_PACKAGE=\"Linux-PAM\"' \
33
- make -k $j CC="$CC"
+ make -k $j CC="$CC" WERROR=1
34
35
if git status --porcelain |grep ^.; then
36
echo >&2 'git status reported uncleanness'
0 commit comments