Revert "Have dtrace depend on object files directly, not objfiles.txt"
authorRobert Haas <rhaas@postgresql.org>
Thu, 15 Oct 2015 17:16:03 +0000 (13:16 -0400)
committerRobert Haas <rhaas@postgresql.org>
Thu, 15 Oct 2015 17:16:03 +0000 (13:16 -0400)
This reverts commit 73537828537239923a0f827a92b20502a3efa52d.  Per
report from Tom Lane, this breaks parallel builds.

src/backend/Makefile

index 29cc01f88688a259c6daabf4a10a688bfb47c4f7..fb60420b6f11acee444ef80eb821c20ff580b7b5 100644 (file)
@@ -188,8 +188,8 @@ $(top_builddir)/src/include/utils/probes.h: utils/probes.h
        $(LN_S) "../../../$(subdir)/utils/probes.h" .
 
 
-utils/probes.o: utils/probes.d $(call expand_subsys,$(SUBDIROBJS))
-   $(DTRACE) $(DTRACEFLAGS) -C -G -s $< $(call expand_subsys,$(SUBDIROBJS)) -o $@
+utils/probes.o: utils/probes.d $(SUBDIROBJS)
+   $(DTRACE) $(DTRACEFLAGS) -C -G -s $(call expand_subsys,$^) -o $@
 
 
 ##########################################################################