diff options
author | Florian Weimer <fweimer@redhat.com> | 2023-08-14 13:48:01 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2023-08-15 08:07:50 +0200 |
commit | d6fe19facc61caffb25383d9c25eff86a0e115c8 (patch) | |
tree | 9369d0741b14ab4baf7648c4bd021f23b866a6e9 | |
parent | 0dc7fc1cf094406a138e4d1bcf9553e59edcf89d (diff) | |
download | glibc-d6fe19facc61caffb25383d9c25eff86a0e115c8.zip glibc-d6fe19facc61caffb25383d9c25eff86a0e115c8.tar.gz glibc-d6fe19facc61caffb25383d9c25eff86a0e115c8.tar.bz2 |
configure: Add -Wall again to the default CFLAGS
Commit 78ceef25d64efeeb6067d1cb282a00466e637e2a ("configure: Remove
--enable-all-warnings option") removed it due to a missing +.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
-rw-r--r-- | Makeconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -857,7 +857,7 @@ host-test-program-cmd = $(host-built-program-cmd) endif # Extra flags to pass to GCC. -gccwarn := -Wall -Wwrite-strings -Wundef ++gccwarn := -Wall -Wwrite-strings -Wundef ifeq ($(enable-werror),yes) +gccwarn += -Werror endif |