Fix installing without root when systemd exists.

Try to detect path to systemd units only when
--with-systemdsystemunitdir is used without the path.

If this option isn't specified at all, no need to install systemd file.

Thanks to n0kS for reporting this.
This commit is contained in:
Alexey Sokolov
2012-10-29 01:39:24 +07:00
parent d6c0f44e51
commit d543728215
+5 -1
View File
@@ -151,7 +151,11 @@ AC_ARG_ENABLE( [poll],
AC_ARG_WITH([systemdsystemunitdir],
AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
[], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
[
if test x"$with_systemdsystemunitdir" = xyes; then
with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
fi
])
if test "x$with_systemdsystemunitdir" != xno; then
AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
fi