diff options
author | Jan Engelhardt <jengelh@inai.de> | 2014-02-16 13:42:17 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-02-17 19:03:07 -0500 |
commit | fc9acf252ffd0992a6bb0870f76c8d87cead2088 (patch) | |
tree | 9be608b738829d40e356bb1fd042a3853080d324 | |
parent | a87f0f726ca6dc9fde11eea6591a244e77d2d182 (diff) |
doc: quote consistently in autoconf code
AS_HELP_STRING has been observed to expand such that the surround
function complains; play it safe and consistenly quote the example
code throughout.
-rw-r--r-- | man/daemon.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/daemon.xml b/man/daemon.xml index 26ba600521..88dd082a33 100644 --- a/man/daemon.xml +++ b/man/daemon.xml @@ -766,7 +766,7 @@ <programlisting>PKG_PROG_PKG_CONFIG AC_ARG_WITH([systemdsystemunitdir], - AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),, + [AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files])],, [with_systemdsystemunitdir=auto]) AS_IF([test "x$with_systemdsystemunitdir" = "xyes" -o "x$with_systemdsystemunitdir" = "xauto"], [ def_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd) @@ -775,10 +775,10 @@ AS_IF([test "x$with_systemdsystemunitdir" = "xyes" -o "x$with_systemdsystemunitd [AS_IF([test "x$with_systemdsystemunitdir" = "xyes"], [AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])]) with_systemdsystemunitdir=no], - [with_systemdsystemunitdir=$def_systemdsystemunitdir])]) + [with_systemdsystemunitdir="$def_systemdsystemunitdir"])]) AS_IF([test "x$with_systemdsystemunitdir" != "xno"], [AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])]) -AM_CONDITIONAL(HAVE_SYSTEMD, [test "x$with_systemdsystemunitdir" != "xno"])</programlisting> +AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemdsystemunitdir" != "xno"])</programlisting> <para>This snippet allows automatic installation of the unit files on systemd |