From 09ba2514d58286c60fea42ae57bef07f58712236 Mon Sep 17 00:00:00 2001 From: William Brown Date: Jun 14 2019 09:26:51 +0000 Subject: Ticket 50037 - revert path changes as it breaks prefix/rpm builds Bug Description: A change was made to support virtual envs, but it causes a regression that breaks prefix building to access the cli tools. Fix Description: Revert the path changes - the other patch changes were tottaly reasonable, and can remain. Related: https://pagure.io/389-ds-base/issue/50037 Author: William Brown Review by: vashirov (Thanks!) --- diff --git a/src/lib389/setup.py b/src/lib389/setup.py index 513d2dc..61de441 100644 --- a/src/lib389/setup.py +++ b/src/lib389/setup.py @@ -58,14 +58,14 @@ setup( # find lib389/clitools -name ds\* -exec echo \''{}'\', \; data_files=[ - ('sbin/', [ + ('/usr/sbin/', [ 'cli/dsctl', 'cli/dsconf', 'cli/dscreate', 'cli/dsidm', 'cli/dscontainer', ]), - ('share/man/man8', [ + ('/usr/share/man/man8', [ 'man/dsctl.8', 'man/dsconf.8', 'man/dscreate.8',