From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2530 invoked by alias); 30 Jan 2009 11:08:32 -0000 Received: (qmail 2524 invoked by alias); 30 Jan 2009 11:08:32 -0000 X-SWARE-Spam-Status: No, hits=-1.3 required=5.0 tests=AWL,BAYES_00,KAM_MX,SPF_HELO_PASS X-Spam-Status: No, hits=-1.3 required=5.0 tests=AWL,BAYES_00,KAM_MX,SPF_HELO_PASS X-Spam-Check-By: sourceware.org X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on bastion.fedora.phx.redhat.com Subject: cluster: STABLE3 - build: add knowledge for install/uninstall of .pc files 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: fd26805aad8cd81943228197e06c99911487b92c X-Git-Newrev: 4008dfcc101aeea5391127f12fbbcea1bccdae3a From: "Fabio M. Di Nitto" Message-Id: <20090130110738.8AC30C024D@lists.fedorahosted.org> Date: Fri, 30 Jan 2009 11:08: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-q1/txt/msg00324.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=4008dfcc101aeea5391127f12fbbcea1bccdae3a Commit: 4008dfcc101aeea5391127f12fbbcea1bccdae3a Parent: fd26805aad8cd81943228197e06c99911487b92c Author: Fabio M. Di Nitto AuthorDate: Fri Jan 30 11:13:27 2009 +0100 Committer: Fabio M. Di Nitto CommitterDate: Fri Jan 30 11:13:27 2009 +0100 build: add knowledge for install/uninstall of .pc files 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 cbe9816..5028e74 100644 --- a/make/install.mk +++ b/make/install.mk @@ -69,3 +69,7 @@ ifdef NOTIFYD install -d ${notifyddir} install -m755 ${NOTIFYD} ${notifyddir} endif +ifdef PKGCONF + install -d ${pkgconfigdir} + install -m644 ${PKGCONF} ${pkgconfigdir} +endif diff --git a/make/uninstall.mk b/make/uninstall.mk index dfa14dc..c49b6d1 100644 --- a/make/uninstall.mk +++ b/make/uninstall.mk @@ -44,3 +44,6 @@ endif ifdef NOTIFYD ${UNINSTALL} ${NOTIFYD} ${notifyddir} endif +ifdef PKGCONF + ${UNINSTALL} ${PKGCONF} ${pkgconfigdir} +endif