aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-03-18 17:57:34 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-03-18 17:57:34 +0000
commit584b6dc2d50a1fe7708c18c7b55beb5c60c50d3f (patch)
tree1fb42cf7b1850e197350451e95771b18dd6fdf02 /src
parent7221b4fa50e6d21e9536e02afd4fb6412c61d324 (diff)
downloadpostgresql-584b6dc2d50a1fe7708c18c7b55beb5c60c50d3f.tar.gz
postgresql-584b6dc2d50a1fe7708c18c7b55beb5c60c50d3f.zip
Fix ecpg/preproc makefile for parallel builds: parser.o must depend
on preproc.h, else make may try to build it before preproc.h is ready. Per failures seen here and in buildfarm.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/ecpg/preproc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/Makefile b/src/interfaces/ecpg/preproc/Makefile
index c0a82ebf946..acd3231b161 100644
--- a/src/interfaces/ecpg/preproc/Makefile
+++ b/src/interfaces/ecpg/preproc/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1998-2007, PostgreSQL Global Development Group
#
-# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.124 2007/03/17 19:25:23 meskes Exp $
+# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.125 2007/03/18 17:57:34 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -57,7 +57,7 @@ else
@$(missing) flex $< $@
endif
-c_keywords.o ecpg_keywords.o keywords.o preproc.o: preproc.h
+c_keywords.o ecpg_keywords.o keywords.o preproc.o parser.o: preproc.h
parser.c: $(top_srcdir)/src/backend/parser/parser.c
rm -f $@ && $(LN_S) $< .