]> granicus.if.org Git - postgresql/commitdiff
Disable -Werror by default.
authorMarc G. Fournier <scrappy@hub.org>
Sat, 25 Jan 1997 19:23:43 +0000 (19:23 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 25 Jan 1997 19:23:43 +0000 (19:23 +0000)
Developers can add it to their Makefile.custom...again, it causes sooooo many
more problems then its worth, from an end-user standpoint.

src/Makefile.global

index 647ebc4db7e1fdf12ccf708567f98bc79e9d6624..2d4bbfb21309e030d322348d89bb20ce99931385 100644 (file)
@@ -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