diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-09-23 18:14:08 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-09-23 18:14:08 +0000 |
commit | afcbce5c22dbf7021453bfd8508b2484c007ccab (patch) | |
tree | 8cd104866a1e81d49a135e9dca88c51d39059d94 /src | |
parent | 0da293f868d4ce9aa7477123e11fa9a0f80d5afc (diff) | |
download | postgresql-afcbce5c22dbf7021453bfd8508b2484c007ccab.tar.gz postgresql-afcbce5c22dbf7021453bfd8508b2484c007ccab.zip |
CFLAGS +- -I... got messed by one of Bryan's patches
Fix Submitted by: Bryan himself :)
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index 4a2d689a6e0..ce1bee8d37d 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.5 1996/09/23 08:23:33 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.6 1996/09/23 18:14:08 scrappy Exp $ # #------------------------------------------------------------------------- @@ -15,8 +15,8 @@ MKDIR= ../mk include $(MKDIR)/postgres.mk CFLAGS+= -I../backend/include \ - -I$../include \ - -I$../backend \ + -I../include \ + -I../backend \ -I. \ ifdef KRBVERS |