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

Commit 2771129

Browse files
committed
Fixes:
minor Makefile changes to force setting of SRCDIR and ordering of include files Submitted by: Bruce Momjian (root@candle.pha.pa.us)
1 parent 54857ad commit 2771129

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Makefile.global

Lines changed: 4 additions & 4 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.4 1996/07/16 07:12:10 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.5 1996/07/19 05:32:22 scrappy Exp $
1111
#
1212
# NOTES
1313
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -59,6 +59,9 @@
5959
# or the makefiles can get confused
6060
PORTNAME= BSD44_derived
6161

62+
# SRCDIR specifies where the source files are.
63+
SRCDIR= <SET THIS VALUE>
64+
6265
# FreeBSD 2.1R with new Flex v2.5.2 in /usr/local
6366
LEX = flex
6467
LDADD+= -L/usr/local/lib -lfl
@@ -79,9 +82,6 @@ POSTGRESLOGIN= postgres
7982
# changable separately.
8083
POSTGRESDIR= /home/staff/scrappy/cvs/postgres95
8184

82-
# SRCDIR specifies where the source files are.
83-
SRCDIR= $(POSTGRESDIR)/src
84-
8585
# DATADIR specifies where the postmaster expects to find its database.
8686
# This may be overridden by command line options or the PGDATA environment
8787
# variable.

src/bin/Makefile.global

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.1.1.1 1996/07/09 06:22:11 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.2 1996/07/19 05:32:42 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

14-
CFLAGS+= -I$(HEADERDIR) -I$(srcdir)/backend -I$(srcdir)/backend/include -I$(srcdir)/libpq
14+
CFLAGS+= -I$(srcdir)/backend -I$(srcdir)/backend/include -I$(srcdir)/libpq -I$(HEADERDIR)
1515

1616
#
1717
# try locating libpq.a in the following places

0 commit comments

Comments
 (0)