From 6989a8ae91a9c77695e4e9bffdc4b4acf475ef58 Mon Sep 17 00:00:00 2001 From: Sukchan Lee Date: Tue, 24 Oct 2017 19:40:47 +0900 Subject: [PATCH] to permit 'make install' in user privilege for developer. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 50d320c44..e61f7d786 100644 --- a/configure.ac +++ b/configure.ac @@ -218,7 +218,7 @@ AC_ARG_WITH( if test x"$pkg_config_exists" = x"0"; then systemd_unit_dir=`pkg-config systemd --variable=systemdsystemunitdir` else - systemd_unit_dir="/etc/systemd/system/" + systemd_unit_dir="${sysconfdir}/systemd/system/" fi ] ) @@ -241,7 +241,7 @@ AC_ARG_WITH( logrotate_conf_dir="$withval" ], [ - logrotate_conf_dir="/etc/logrotate.d/" + logrotate_conf_dir="${sysconfdir}/logrotate.d/" ] )