diff options
author | Max Kellermann <max@duempel.org> | 2014-12-08 15:37:39 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-08 15:37:39 +0100 |
commit | 082be33cbd5ced59da3262274103bdfff35c780d (patch) | |
tree | 75122228e674b971376a20eba4596f5df2db0999 /m4 | |
parent | 9aada2ef19bbdb52c8c8889e0e0bb2f4c8597ad8 (diff) | |
download | mpd-082be33cbd5ced59da3262274103bdfff35c780d.tar.gz mpd-082be33cbd5ced59da3262274103bdfff35c780d.tar.xz mpd-082be33cbd5ced59da3262274103bdfff35c780d.zip |
m4/mpd_func.m4: fix typo
Diffstat (limited to 'm4')
-rw-r--r-- | m4/mpd_func.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/mpd_func.m4 b/m4/mpd_func.m4 index 5f2bf8f3d..757cd3b6f 100644 --- a/m4/mpd_func.m4 +++ b/m4/mpd_func.m4 @@ -6,7 +6,7 @@ AC_DEFUN([MPD_OPTIONAL_FUNC], [ AC_ARG_ENABLE([$1], AS_HELP_STRING([--enable-$1], [use the function "$1" (default: auto)]), - [test xenable_$1 = xyes && AC_DEFINE([$3], 1, [Define to use $1])], + [test x$[]enable_$1 = xyes && AC_DEFINE([$3], 1, [Define to use $1])], [AC_CHECK_FUNC([$2], [AC_DEFINE([$3], 1, [Define to use $1])],)]) ]) |