projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fc4c26
)
Revert "Have dtrace depend on object files directly, not objfiles.txt"
author
Robert Haas
<rhaas@postgresql.org>
Thu, 15 Oct 2015 17:16:03 +0000
(13:16 -0400)
committer
Robert 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
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/Makefile
b/src/backend/Makefile
index 29cc01f88688a259c6daabf4a10a688bfb47c4f7..fb60420b6f11acee444ef80eb821c20ff580b7b5 100644
(file)
--- 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 $@
##########################################################################