Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile: always build with -fno-common
GCC 10 has it enabled by default and everything now builds OK with it,
so add it to CFLAGS to avoid breaking the build in the future.

Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com>
  • Loading branch information
WOnder93 authored and jwcart2 committed Jan 27, 2020
1 parent 4d330d0 commit a551b2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Expand Up @@ -16,7 +16,8 @@ else
-Wstrict-prototypes \
-Wundef \
-Wunused \
-Wwrite-strings
-Wwrite-strings \
-fno-common
endif

ifneq ($(DESTDIR),)
Expand Down

0 comments on commit a551b2d

Please sign in to comment.