mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:45:41 +01:00
configure.in: Fix variable name
Fix variable name for --with-asound-state-dir as currently we have to pass --with-ASOUND_STATE_DIR= which is wrong and inconsistent with the other switches. Signed-off-by: Ozan Çağlayan <ozan@pardus.org.tr> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
81f015f5ab
commit
53b08bfc14
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ if test "x$with_systemdsystemunitdir" != xno; then
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(HAVE_SYSTEMD, [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ])
|
AM_CONDITIONAL(HAVE_SYSTEMD, [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ])
|
||||||
|
|
||||||
AC_ARG_WITH(ASOUND_STATE_DIR,
|
AC_ARG_WITH([asound-state-dir],
|
||||||
AS_HELP_STRING([--with-asound-state-dir=DIR], [Directory to place asound.state file in]),
|
AS_HELP_STRING([--with-asound-state-dir=DIR], [Directory to place asound.state file in]),
|
||||||
[ASOUND_STATE_DIR="$withval"],
|
[ASOUND_STATE_DIR="$withval"],
|
||||||
[ASOUND_STATE_DIR="/var/lib/alsa"])
|
[ASOUND_STATE_DIR="/var/lib/alsa"])
|
||||||
|
|
Loading…
Reference in a new issue