Skip to content

Commit c7b5159

Browse files
committed
Disable -Werror by default.
Developers can add it to their Makefile.custom...again, it causes sooooo many more problems then its worth, from an end-user standpoint.
1 parent b1fd1f6 commit c7b5159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile.global

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.99 1997/01/25 19:19:35 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.100 1997/01/25 19:23:43 scrappy Exp $
1111
#
1212
# NOTES
1313
# Essentially all Postgres make files include this file and use the
@@ -761,7 +761,7 @@ ifneq ($(CUSTOM_COPT),)
761761
COPT= $(CUSTOM_COPT)
762762
else
763763
ifeq ($(CC), gcc)
764-
COPT= -O2 -Werror
764+
COPT= -O2 # -Werror
765765
else
766766
COPT= -O
767767
endif

0 commit comments

Comments
 (0)