[alsa-devel] [RESEND] [-, JACK, plugin, 1/1] configure: use /etc instead of /etc
Alex Ivanov
gnidorah at ya.ru
Tue Mar 26 18:10:38 CET 2019
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 at 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"
--
2.19.2
More information about the Alsa-devel
mailing list