summaryrefslogtreecommitdiff
path: root/src/backend/catalog/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/catalog/Makefile')
-rw-r--r--src/backend/catalog/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/Makefile b/src/backend/catalog/Makefile
index 0482467bbbe..026d9053a0a 100644
--- a/src/backend/catalog/Makefile
+++ b/src/backend/catalog/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for backend/catalog
#
-# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.62 2007/02/06 09:16:08 petere Exp $
+# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.63 2007/02/09 15:55:58 petere Exp $
#
#-------------------------------------------------------------------------
@@ -26,7 +26,7 @@ SUBSYS.o: $(OBJS)
# the catalog header files are assembled into postgres.bki. In particular,
# indexing.h had better be last, and toasting.h just before it.
-POSTGRES_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\
+POSTGRES_BKI_SRCS = $(addprefix $(top_srcdir)/src/include/catalog/,\
pg_proc.h pg_type.h pg_attribute.h pg_class.h pg_autovacuum.h \
pg_attrdef.h pg_constraint.h pg_inherits.h pg_index.h pg_operator.h \
pg_opfamily.h pg_opclass.h pg_am.h pg_amop.h pg_amproc.h \
@@ -38,7 +38,7 @@ POSTGRES_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\
toasting.h indexing.h \
)
-pg_includes := $(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include)
+pg_includes = $(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include)
# see explanation in ../parser/Makefile
postgres.description: postgres.bki ;