Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cb34902

Browse files
committed
Move port includes from bin/pg_dump/Makefile to Makefile.global
1 parent db17470 commit cb34902

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/Makefile.global

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.18 1996/07/31 18:52:38 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19 1996/07/31 18:55:49 scrappy Exp $
1111
#
1212
# NOTES
1313
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -273,6 +273,7 @@ endif
273273

274274
# Globally pass PORTNAME
275275
CFLAGS+= -DPORTNAME_$(PORTNAME)
276+
CFLAGS += -I ../../backend/port/$(PORTNAME)
276277

277278
# Globally pass the default TCP port for postmaster(1).
278279
CFLAGS+= -DPOSTPORT='"5432"'
@@ -290,7 +291,7 @@ CFLAGS += -DNULL_PATCH
290291
CFLAGS += -DESCAPE_PATCH
291292
# enable patches for varchar and fsync
292293
CFLAGS += -DOPENLINK_PATCHES
293-
294+
294295
##############################################################################
295296
#
296297
# Miscellaneous configuration

src/bin/pg_dump/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.4 1996/07/31 17:35:13 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.5 1996/07/31 18:59:00 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -16,7 +16,7 @@ PROG= pg_dump
1616
MKDIR= ../../mk
1717
include $(MKDIR)/postgres.mk
1818
include ../Makefile.global
19-
CFLAGS += -I ../../backend/port/$(PORTNAME)
19+
2020
SRCS= pg_dump.c common.c
2121

2222
include $(MKDIR)/postgres.prog.mk

0 commit comments

Comments
 (0)