diff options
author | Marc G. Fournier | 1997-01-25 19:23:43 +0000 |
---|---|---|
committer | Marc G. Fournier | 1997-01-25 19:23:43 +0000 |
commit | c7b51597135da5c582b24af8e1598c48f87f1301 (patch) | |
tree | 426e78a0f30ebcc8a724f99dabdd5ec6eafc9601 | |
parent | b1fd1f69981ebbe4029e1016850adc6f1d30ddf8 (diff) |
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.
-rw-r--r-- | src/Makefile.global | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.global b/src/Makefile.global index 647ebc4db7e..2d4bbfb2130 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.99 1997/01/25 19:19:35 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.100 1997/01/25 19:23:43 scrappy Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -761,7 +761,7 @@ ifneq ($(CUSTOM_COPT),) COPT= $(CUSTOM_COPT) else ifeq ($(CC), gcc) - COPT= -O2 -Werror + COPT= -O2 # -Werror else COPT= -O endif |