diff options
author | Bruce Momjian | 2000-10-10 13:04:46 +0000 |
---|---|---|
committer | Bruce Momjian | 2000-10-10 13:04:46 +0000 |
commit | 87db3b88e0285466e321df6d6b1f1ef8838b00a7 (patch) | |
tree | 1345a7c0d0924ce97f2d785bcb359ac16914d126 /src | |
parent | 1fe2b77d018ec169ae9bf711e17ded5367614829 (diff) |
Remove override of CFLAGS.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 968a0aff8f1..9b2f3987c41 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.98 2000/10/08 21:13:27 petere Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.99 2000/10/10 13:04:46 momjian Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -137,7 +137,7 @@ CXX = @CXX@ CXXFLAGS = @CXXFLAGS@ @INCLUDES@ ifeq ($(GCC), yes) - override CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations + CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations endif # Kind-of compilers |