From 8224a3d6a03aeb4648bb624f775b139115567a8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Deschner?= Date: Tue, 16 Jan 2018 16:25:01 +0100 Subject: [PATCH] packaging: fix default systemd-dir path. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://bugzilla.samba.org/show_bug.cgi?id=13227 By default we should not end up with a /usr/usr/lib/systemd/system path. Guenther Signed-off-by: Guenther Deschner Reviewed-by: Andreas Schneider Autobuild-User(master): Günther Deschner Autobuild-Date(master): Tue Jan 16 21:02:28 CET 2018 on sn-devel-144 --- packaging/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/wscript b/packaging/wscript index 76158e9da44..6cee6b9daa6 100644 --- a/packaging/wscript +++ b/packaging/wscript @@ -10,9 +10,9 @@ def set_options(opt): action="store_true", dest="systemd_install_services", default=False) gr.add_option('--with-systemddir', - help=("systemd service directory [PREFIX/usr/lib/systemd/system]"), + help=("systemd service directory [PREFIX/lib/systemd/system]"), action="store", dest="SYSTEMDDIR", - default="${PREFIX}/usr/lib/systemd/system") + default="${PREFIX}/lib/systemd/system") # # extra service directives # -- 2.14.3