From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20510 invoked by alias); 7 Aug 2008 07:16:54 -0000 Received: (qmail 20500 invoked by alias); 7 Aug 2008 07:16:53 -0000 X-Spam-Status: No, hits=-1.8 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 X-Spam-Level: Subject: master - build: fix ccs_test symlink install target 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: abdd841250d0a81aeacfe3735cb55d6a4e8d0727 X-Git-Newrev: 92a8e4dac0efceead130bf5e66d8a06f6e5285e5 From: "Fabio M. Di Nitto" Message-Id: <20080807071541.67CEC12003F@lists.fedorahosted.org> Date: Thu, 07 Aug 2008 08:39: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: 2008-q3/txt/msg00219.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=92a8e4dac0efceead130bf5e66d8a06f6e5285e5 Commit: 92a8e4dac0efceead130bf5e66d8a06f6e5285e5 Parent: abdd841250d0a81aeacfe3735cb55d6a4e8d0727 Author: Fabio M. Di Nitto AuthorDate: Thu Aug 7 09:15:05 2008 +0200 Committer: Fabio M. Di Nitto CommitterDate: Thu Aug 7 09:15:05 2008 +0200 build: fix ccs_test symlink install target previous target was copying the whole ccs_tool into ccs_test again. Signed-off-by: Fabio M. Di Nitto --- ccs/ccs_tool/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ccs/ccs_tool/Makefile b/ccs/ccs_tool/Makefile index 5d6aa5f..ff77b9f 100644 --- a/ccs/ccs_tool/Makefile +++ b/ccs/ccs_tool/Makefile @@ -1,7 +1,8 @@ TARGET1 = ccs_tool TARGET2 = ccs_test -SBINDIRT = $(TARGET1) $(TARGET2) +SBINDIRT = $(TARGET1) +SBINSYMT = $(TARGET2) include ../../make/defines.mk