From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17781 invoked by alias); 16 Jul 2008 13:43:06 -0000 Received: (qmail 17749 invoked by uid 9702); 16 Jul 2008 13:43:05 -0000 Date: Wed, 16 Jul 2008 13:43:00 -0000 Message-ID: <20080716134305.17732.qmail@sourceware.org> From: fabbione@sourceware.org To: cluster-cvs@sources.redhat.com, cluster-devel@redhat.com Subject: Cluster Project branch, master, updated. cluster-2.99.06-10-gd493de9 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: f684e3920bb00e80ddaf1225c42d53d73e96ca55 X-Git-Newrev: d493de97ef6714d1ee576932adec1dad12428d65 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: 2008-q3/txt/msg00078.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Cluster Project". http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=d493de97ef6714d1ee576932adec1dad12428d65 The branch, master has been updated via d493de97ef6714d1ee576932adec1dad12428d65 (commit) from f684e3920bb00e80ddaf1225c42d53d73e96ca55 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d493de97ef6714d1ee576932adec1dad12428d65 Author: Fabio M. Di Nitto Date: Wed Jul 16 15:42:37 2008 +0200 [BUILD] Fix doc install target when building objects outside source tree Signed-off-by: Fabio M. Di Nitto ----------------------------------------------------------------------- Summary of changes: make/install.mk | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/make/install.mk b/make/install.mk index 2140fe3..6c95d56 100644 --- a/make/install.mk +++ b/make/install.mk @@ -57,7 +57,9 @@ ifdef FENCEAGENTSLIB endif ifdef DOCS install -d ${docdir} - install -m644 $(S)/${DOCS} ${docdir} + for i in ${DOCS}; do \ + install -m644 $(S)/$$i ${docdir}; \ + done endif ifdef LOGRORATED install -d ${logrotatedir} hooks/post-receive -- Cluster Project