[alsa-devel] [RESEND] [-, JACK, plugin, 1/1] configure: use /etc instead of /etc
Could you please test this change again? I need it for my maintainer work. Thank you!
Use $sysconfdir as prefix for ALSA_LCONF_DIR by default. Otherwise install fails on non-FHS distros.
Signed-off-by: Alex Ivanov gnidorah@ya.ru --- configure.ac | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac index 5b80585..1be4a70 100644 --- a/configure.ac +++ b/configure.ac @@ -237,7 +237,12 @@ AC_ARG_WITH(alsalconfdir, [path where ALSA local add-on config files are stored]), alsalconfdir="$withval", alsalconfdir="") if test -z "$alsalconfdir"; then - alsalconfdir="/etc/alsa/conf.d" + eval dir="$sysconfdir" + case "$dir" in + /*) ;; + *) dir="$dir" + esac + alsalconfdir="$dir/alsa/conf.d" fi AC_DEFINE_UNQUOTED(ALSA_LCONF_DIR, "$alsalconfdir", [directory containing local ALSA add-on config files]) ALSA_LCONF_DIR="$alsalconfdir"
participants (1)
-
Alex Ivanov