From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6313 invoked by alias); 24 Mar 2009 21:04:16 -0000 Received: (qmail 6304 invoked by alias); 24 Mar 2009 21:04:16 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_73,SPF_HELO_PASS X-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_73,SPF_HELO_PASS X-Spam-Check-By: sourceware.org X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bastion.fedora.phx.redhat.com Subject: cluster: STABLE3 - build: install cluster relaxng schema 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: bc35ee114614a599b6638a60c30b953d5f61dc0f X-Git-Newrev: 1ef36603e44fcb3375f0311fffb2ddf6954bfa84 From: "Fabio M. Di Nitto" Message-Id: <20090324210357.E6BF81201A0@lists.fedorahosted.org> Date: Tue, 24 Mar 2009 21:04: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/msg00899.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=1ef36603e44fcb3375f0311fffb2ddf6954bfa84 Commit: 1ef36603e44fcb3375f0311fffb2ddf6954bfa84 Parent: bc35ee114614a599b6638a60c30b953d5f61dc0f Author: Fabio M. Di Nitto AuthorDate: Tue Mar 24 22:02:31 2009 +0100 Committer: Fabio M. Di Nitto CommitterDate: Tue Mar 24 22:02:31 2009 +0100 build: install cluster relaxng schema install cluster.rng on the system for further use Signed-off-by: Fabio M. Di Nitto --- config/tools/Makefile | 2 +- config/tools/xml/Makefile | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletions(-) diff --git a/config/tools/Makefile b/config/tools/Makefile index 04cc742..e695417 100644 --- a/config/tools/Makefile +++ b/config/tools/Makefile @@ -1,4 +1,4 @@ include ../../make/defines.mk include $(OBJDIR)/make/passthrough.mk -SUBDIRS=ccs_tool ldap man +SUBDIRS=ccs_tool ldap xml man diff --git a/config/tools/xml/Makefile b/config/tools/xml/Makefile new file mode 100644 index 0000000..b301eae --- /dev/null +++ b/config/tools/xml/Makefile @@ -0,0 +1,14 @@ +include ../../../make/defines.mk + +TARGET = cluster.rng + +all: + +clean: + +install: + install -d ${sharedir} + install -m644 ${TARGET} ${sharedir} + +uninstall: + ${UNINSTALL} ${TARGET} ${sharedir}