From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25413 invoked by alias); 4 May 2009 07:42:10 -0000 Received: (qmail 25406 invoked by alias); 4 May 2009 07:42:09 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS X-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS X-Spam-Check-By: sourceware.org X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bastion2.fedora.phx.redhat.com Subject: cluster: STABLE3 - build: add FORCESBINT install/uninstall target To: cluster-cvs-relay@redhat.com X-Project: Cluster Project X-Git-Module: cluster.git X-Git-Refname: refs/heads/STABLE3 X-Git-Reftype: branch X-Git-Oldrev: 1805183e58bfd9d8f6cd4ab77388a4abf696a249 X-Git-Newrev: dd0ae1a244b7d97ce452ea3335586380f0df89f6 From: "Fabio M. Di Nitto" Message-Id: <20090504074137.E62A312036E@lists.fedorahosted.org> Date: Mon, 04 May 2009 07:42:00 -0000 X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 Mailing-List: contact cluster-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cluster-cvs-owner@sourceware.org X-SW-Source: 2009-q2/txt/msg00156.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=dd0ae1a244b7d97ce452ea3335586380f0df89f6 Commit: dd0ae1a244b7d97ce452ea3335586380f0df89f6 Parent: 1805183e58bfd9d8f6cd4ab77388a4abf696a249 Author: Fabio M. Di Nitto AuthorDate: Mon May 4 09:40:23 2009 +0200 Committer: Fabio M. Di Nitto CommitterDate: Mon May 4 09:40:23 2009 +0200 build: add FORCESBINT install/uninstall target some binaries must be in /sbin to be useful at all and to strictly respect FHS. add support for the build system. Signed-off-by: Fabio M. Di Nitto --- make/install.mk | 4 ++++ make/uninstall.mk | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/make/install.mk b/make/install.mk index c4c8a34..8736892 100644 --- a/make/install.mk +++ b/make/install.mk @@ -13,6 +13,10 @@ ifdef INCDIRT install -m644 $(S)/$$i ${incdir}; \ done endif +ifdef FORCESBINT + mkdir -p ${DESTDIR}/sbin + install ${FORCESBINT} ${DESTDIR}/sbin +endif ifdef SBINDIRT install -d ${sbindir} install -m755 ${SBINDIRT} ${sbindir} diff --git a/make/uninstall.mk b/make/uninstall.mk index dc818f1..49e47bb 100644 --- a/make/uninstall.mk +++ b/make/uninstall.mk @@ -8,6 +8,9 @@ endif ifdef INCDIRT ${UNINSTALL} ${INCDIRT} ${incdir} endif +ifdef FORCESBINT + ${UNINSTALL} ${FORCESBINT} ${DESTDIR}/sbin +endif ifdef SBINDIRT ${UNINSTALL} ${SBINDIRT} ${sbindir} endif