summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMikhail Fludkov <misha@pexip.com>2017-11-10 16:26:50 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-11-24 13:40:34 +0100
commit6577f5e91e9432a9fc7a695e4ac7e250720a9461 (patch)
tree48039f8793da19338fdba1800fb0ee2c64b531f5 /plugins
parenteb9ac7436237d18ed1144b745ac69130274afb91 (diff)
gsttraceutils: actually disable tracing system hooks if configured
`./configure --disable-gst-tracer-hooks` didn't do anything, hooks were always enabled regardless of the option. It works correctly in the Meson build though.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Makefile.am7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index cee04aa2b..48a31fc41 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -1,4 +1,7 @@
-SUBDIRS = elements tracers
+SUBDIRS = elements
-DIST_SUBDIRS = elements tracers
+if !GST_DISABLE_GST_TRACER_HOOKS
+SUBDIRS += tracers
+endif
+DIST_SUBDIRS = elements tracers