summaryrefslogtreecommitdiff
path: root/src/backend/storage
diff options
context:
space:
mode:
authorPeter Eisentraut2002-08-10 17:59:28 +0000
committerPeter Eisentraut2002-08-10 17:59:28 +0000
commitf1d820494c6fd45d4675d77f596159175f1d1c26 (patch)
tree5b5ad303d4696b02b3f0379de22f488b5fdbedb8 /src/backend/storage
parent029aa97f2d90a2ef97b2c0ca917bea7268392eb1 (diff)
Fix failure to relink postmaster executable in the first make run if only a
single source file a few directories deep in the backend tree has changed.
Diffstat (limited to 'src/backend/storage')
-rw-r--r--src/backend/storage/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/Makefile b/src/backend/storage/Makefile
index ace37e6ac66..3c49c77b878 100644
--- a/src/backend/storage/Makefile
+++ b/src/backend/storage/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for the storage manager subsystem
#
-# $Header: /cvsroot/pgsql/src/backend/storage/Makefile,v 1.9 2001/06/27 23:31:39 tgl Exp $
+# $Header: /cvsroot/pgsql/src/backend/storage/Makefile,v 1.10 2002/08/10 17:59:28 petere Exp $
#
subdir = src/backend/storage
@@ -16,7 +16,7 @@ all: SUBSYS.o
SUBSYS.o: $(SUBDIROBJS)
$(LD) $(LDREL) $(LDOUT) $@ $^
-$(SUBDIROBJS): $(SUBDIRS:%=%-recursive)
+$(SUBDIROBJS): $(SUBDIRS:%=%-recursive) ;
.PHONY: $(SUBDIRS:%=%-recursive)
$(SUBDIRS:%=%-recursive):