diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-14 16:45:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-14 16:45:55 +0000 |
commit | 9f167f564c88dc4ff8d73637f0fd4047702f6ab5 (patch) | |
tree | fff6c8e343107d3cbe53b9a5ee77c4abe2435685 | |
parent | 7284c36ae75152ec8153d8540aaf63579cc33036 (diff) | |
download | postgresql-9f167f564c88dc4ff8d73637f0fd4047702f6ab5.tar.gz postgresql-9f167f564c88dc4ff8d73637f0fd4047702f6ab5.zip |
Add dependency to fix parallel-make race condition. Alexander Dupuy
-rw-r--r-- | src/port/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/port/Makefile b/src/port/Makefile index a3bbb73e224..de686e758dc 100644 --- a/src/port/Makefile +++ b/src/port/Makefile @@ -15,7 +15,7 @@ # for use only by the backend binaries # # IDENTIFICATION -# $PostgreSQL: pgsql/src/port/Makefile,v 1.21.4.1 2006/05/08 02:18:21 momjian Exp $ +# $PostgreSQL: pgsql/src/port/Makefile,v 1.21.4.2 2006/07/14 16:45:55 tgl Exp $ # #------------------------------------------------------------------------- @@ -46,6 +46,8 @@ thread.o: thread.c path.o: path.c pg_config_paths.h +path_srv.o: path.c pg_config_paths.h + # # Server versions of object files # |