diff options
author | Peter Eisentraut | 2007-02-09 15:56:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2007-02-09 15:56:00 +0000 |
commit | c138b966d42e69446b52a3e65a596f0401c41a33 (patch) | |
tree | 1542dc3cf0db17ec247d9c9309bdbac419c63720 /src/backend/catalog/Makefile | |
parent | d7fee591dbf26e4f0ca52b05cee4b34ea84b7cd6 (diff) |
Replace useless uses of := by = in makefiles.
Diffstat (limited to 'src/backend/catalog/Makefile')
-rw-r--r-- | src/backend/catalog/Makefile | 6 |
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 ; |