diff --git a/ChangeLog b/ChangeLog index ae92899bcb..45c4bd3eac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2008-02-02 Tim-Philipp Müller + + * tests/check/Makefile.am: + Fix the tests environment's GST_PLUGIN_PATH: we want the directory + with the core's plugins first and our local build directories last, + since we might be building against an installed core, and that + core's plugin directory may contain older or other versions of + our own -base plugins, but we really do want to test our local + ones (if there are multiple plugins or element factories with the + same name, those inspected last will trump those read in earlier). + Fixes #512740 for the most part. + 2008-02-02 Sebastian Dröge * configure.ac: diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am index c52546ebbc..db5a9ce2f3 100644 --- a/tests/check/Makefile.am +++ b/tests/check/Makefile.am @@ -10,7 +10,7 @@ TESTS_ENVIRONMENT = \ STATE_IGNORE_ELEMENTS="$(STATE_IGNORE_ELEMENTS)" \ $(REGISTRY_ENVIRONMENT) \ GST_PLUGIN_SYSTEM_PATH= \ - GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext:$(GST_PLUGINS_DIR) + GST_PLUGIN_PATH=$(GST_PLUGINS_DIR):$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext # ths core dumps of some machines have PIDs appended CLEANFILES = core.* test-registry.xml