From: Marc G. Fournier Date: Tue, 6 Aug 1996 16:05:56 +0000 (+0000) Subject: Had a space in CFLAGS+= -I .. X-Git-Tag: Release_2_0~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd3b829959e1e2288e6fb58063aab498439fcd74;p=postgresql Had a space in CFLAGS+= -I .. Submitted by: Andrew Martin --- diff --git a/src/Makefile.global b/src/Makefile.global index e22ebeaf31..4ca93effe3 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"'