From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14847 invoked by alias); 30 Jan 2009 11:32:07 -0000 Received: (qmail 14833 invoked by alias); 30 Jan 2009 11:32:07 -0000 X-SWARE-Spam-Status: No, hits=-0.6 required=5.0 tests=AWL,BAYES_05,KAM_MX,SPF_HELO_PASS X-Spam-Status: No, hits=-0.6 required=5.0 tests=AWL,BAYES_05,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: master - 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/master X-Git-Reftype: branch X-Git-Oldrev: 57dd3f96e62864881368c435a8469e56dd1bb814 X-Git-Newrev: 063ede47c1eee0f61036bb4d1fd3cce129ec378e From: "Fabio M. Di Nitto" Message-Id: <20090130113101.A71FA12056D@lists.fedorahosted.org> Date: Fri, 30 Jan 2009 11:32: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/msg00334.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=063ede47c1eee0f61036bb4d1fd3cce129ec378e Commit: 063ede47c1eee0f61036bb4d1fd3cce129ec378e Parent: 57dd3f96e62864881368c435a8469e56dd1bb814 Author: Fabio M. Di Nitto AuthorDate: Fri Jan 30 11:13:27 2009 +0100 Committer: Fabio M. Di Nitto CommitterDate: Fri Jan 30 12:19:50 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 79690e8..8671618 100644 --- a/make/install.mk +++ b/make/install.mk @@ -59,3 +59,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 af5da73..ad769b5 100644 --- a/make/uninstall.mk +++ b/make/uninstall.mk @@ -35,3 +35,6 @@ endif ifdef NOTIFYD ${UNINSTALL} ${NOTIFYD} ${notifyddir} endif +ifdef PKGCONF + ${UNINSTALL} ${PKGCONF} ${pkgconfigdir} +endif