diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-06 16:05:56 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-06 16:05:56 +0000 |
commit | fd3b829959e1e2288e6fb58063aab498439fcd74 (patch) | |
tree | aeacb2287cac3171724bcf7495c619eff335e559 /src | |
parent | 7ef04b25cc59f87abf80ec25c3c1b229bf77a37e (diff) | |
download | postgresql-fd3b829959e1e2288e6fb58063aab498439fcd74.tar.gz postgresql-fd3b829959e1e2288e6fb58063aab498439fcd74.zip |
Had a space in CFLAGS+= -I ..
Submitted by: Andrew Martin <martin@biochemistry.ucl.ac.uk>
Diffstat (limited to 'src')
-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 e22ebeaf318..4ca93effe30 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19 1996/07/31 18:55:49 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.20 1996/08/06 16:05:56 scrappy Exp $ # # NOTES # This is seen by any Makefiles that include mk/postgres.mk. To @@ -273,7 +273,7 @@ endif # Globally pass PORTNAME CFLAGS+= -DPORTNAME_$(PORTNAME) -CFLAGS += -I ../../backend/port/$(PORTNAME) +CFLAGS += -I../../backend/port/$(PORTNAME) # Globally pass the default TCP port for postmaster(1). CFLAGS+= -DPOSTPORT='"5432"' |