diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-10-15 13:16:03 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-10-15 13:16:03 -0400 |
commit | 08fbad0afd62690cc82990c0504529ef238ac24d (patch) | |
tree | 5430650fdf6bd5bcee2eb5b23d95a690580af337 | |
parent | 5fc4c26db5120bd90348b6ee3101fcddfdf54800 (diff) | |
download | postgresql-08fbad0afd62690cc82990c0504529ef238ac24d.tar.gz postgresql-08fbad0afd62690cc82990c0504529ef238ac24d.zip |
Revert "Have dtrace depend on object files directly, not objfiles.txt"
This reverts commit 73537828537239923a0f827a92b20502a3efa52d. Per
report from Tom Lane, this breaks parallel builds.
-rw-r--r-- | src/backend/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile index 29cc01f8868..fb60420b6f1 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -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 $@ ########################################################################## |