From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH 11/28] tools: substitute bindir instead of BINDIR Date: Tue, 30 Sep 2014 16:51:27 +0100 Message-ID: <1412092287.31276.11.camel@citrix.com> References: <1411658423-18877-1-git-send-email-olaf@aepfle.de> <1411658423-18877-12-git-send-email-olaf@aepfle.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1411658423-18877-12-git-send-email-olaf@aepfle.de> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Olaf Hering Cc: Ian Jackson , Stefano Stabellini , Wei Liu , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Thu, 2014-09-25 at 17:20 +0200, Olaf Hering wrote: > ... and same for sbindir and libdir. > Expand usage of exec_prefix so that it does not appear in substituted > variables in systemd files. > > Please rerun autogen.sh after applying this patch. > > Signed-off-by: Olaf Hering > Cc: Ian Campbell > Cc: Ian Jackson > Cc: Stefano Stabellini > Cc: Wei Liu > --- > config/Paths.mk.in | 6 +++--- > m4/paths.m4 | 15 +++++---------- > m4/xenstored.m4 | 8 ++++---- > tools/hotplug/Linux/init.d/sysconfig.xencommons.in | 4 ++-- > tools/hotplug/Linux/systemd/xen-watchdog.service.in | 2 +- > tools/hotplug/Linux/systemd/xenconsoled.service.in | 2 +- > tools/hotplug/Linux/systemd/xenstored.service.in | 4 ++-- > 7 files changed, 18 insertions(+), 23 deletions(-) > > diff --git a/config/Paths.mk.in b/config/Paths.mk.in > index 65ca37b..c3c9897 100644 > --- a/config/Paths.mk.in > +++ b/config/Paths.mk.in > @@ -29,12 +29,12 @@ includedir := @includedir@ > localstatedir := @localstatedir@ > sysconfdir := @sysconfdir@ > > -SBINDIR := @SBINDIR@ > -BINDIR := @BINDIR@ > +SBINDIR := $(sbindir) > +BINDIR := $(bindir) You switch all the users of these to the lower case version, don't you? Or only partially perhaps?