mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
default location for configdir is now set to the build dir if plugin-builddir is enabled
Original commit message from CVS: default location for configdir is now set to the build dir if plugin-builddir is enabled
This commit is contained in:
parent
b213eab345
commit
2ee27e3b1f
1 changed files with 6 additions and 2 deletions
|
@ -797,8 +797,12 @@ AC_ARG_ENABLE(profiling,
|
||||||
esac],
|
esac],
|
||||||
[USE_PROFILING=no]) dnl Default value
|
[USE_PROFILING=no]) dnl Default value
|
||||||
|
|
||||||
dnl Default value
|
dnl default to building registry in the source tree if we are enabling plugin build dir
|
||||||
GST_CONFIG_DIR=/etc/gstreamer
|
if test "x$PLUGINS_USE_BUILDDIR" = xyes; then
|
||||||
|
GST_CONFIG_DIR=$builddir
|
||||||
|
else
|
||||||
|
GST_CONFIG_DIR=/etc/gstreamer
|
||||||
|
fi
|
||||||
AC_ARG_WITH(configdir,
|
AC_ARG_WITH(configdir,
|
||||||
[ --with-configdir specify path to use for configdir],
|
[ --with-configdir specify path to use for configdir],
|
||||||
[case "${withval}" in
|
[case "${withval}" in
|
||||||
|
|
Loading…
Reference in a new issue