From patchwork Tue Jan 13 01:31:40 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geoff Levand X-Patchwork-Id: 18127 X-Patchwork-Delegate: jk@ozlabs.org Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id B95BEDDF83 for ; Tue, 13 Jan 2009 12:32:56 +1100 (EST) X-Original-To: cbe-oss-dev@ozlabs.org Delivered-To: cbe-oss-dev@ozlabs.org Received: from WA4EHSOBE005.bigfish.com (outbound-wa4.frontbridge.com [216.32.181.16]) by ozlabs.org (Postfix) with ESMTP id 3F8B5DE2B0; Tue, 13 Jan 2009 12:32:33 +1100 (EST) Received: from mail40-wa4-R.bigfish.com (10.8.14.245) by WA4EHSOBE005.bigfish.com (10.8.40.25) with Microsoft SMTP Server id 8.1.291.1; Tue, 13 Jan 2009 01:32:29 +0000 Received: from mail40-wa4 (localhost.localdomain [127.0.0.1]) by mail40-wa4-R.bigfish.com (Postfix) with ESMTP id 63B9D187007C; Tue, 13 Jan 2009 01:32:29 +0000 (UTC) X-BigFish: VPS0(zzzzzzz2fh6bh61h) X-Spam-TCS-SCL: 0:0 Received: by mail40-wa4 (MessageSwitch) id 1231810347919909_5787; Tue, 13 Jan 2009 01:32:27 +0000 (UCT) Received: from mail8.fw-sd.sony.com (mail8.fw-sd.sony.com [160.33.66.75]) by mail40-wa4.bigfish.com (Postfix) with ESMTP id AFB041CF804D; Tue, 13 Jan 2009 01:32:27 +0000 (UTC) Received: from mail3.sjc.in.sel.sony.com (mail3.sjc.in.sel.sony.com [43.134.1.211]) by mail8.fw-sd.sony.com (8.14.2/8.14.2) with ESMTP id n0D1WRT1014043; Tue, 13 Jan 2009 01:32:27 GMT Received: from ussdixhub21.spe.sony.com (ussdixhub21.spe.sony.com [43.130.141.76]) by mail3.sjc.in.sel.sony.com (8.12.11/8.12.11) with ESMTP id n0D1WQKF016595; Tue, 13 Jan 2009 01:32:26 GMT Received: from USSDIXRG02.am.sony.com (43.130.140.32) by ussdixhub21.spe.sony.com (43.130.141.76) with Microsoft SMTP Server id 8.1.291.1; Mon, 12 Jan 2009 17:32:26 -0800 Received: from ussdixms03.am.sony.com ([43.130.140.23]) by USSDIXRG02.am.sony.com with Microsoft SMTPSVC(5.0.2195.6713); Mon, 12 Jan 2009 17:32:26 -0800 Received: from [192.168.1.10] ([43.135.148.226]) by ussdixms03.am.sony.com with Microsoft SMTPSVC(5.0.2195.6713); Mon, 12 Jan 2009 17:32:26 -0800 Message-ID: <496BEEFC.4020904@am.sony.com> Date: Mon, 12 Jan 2009 17:31:40 -0800 From: Geoff Levand User-Agent: Thunderbird 2.0.0.19 (X11/20090105) MIME-Version: 1.0 To: Jeremy Kerr References: <496BEDF0.3080105@am.sony.com> In-Reply-To: <496BEDF0.3080105@am.sony.com> X-Enigmail-Version: 0.95.7 X-OriginalArrivalTime: 13 Jan 2009 01:32:26.0074 (UTC) FILETIME=[CA53FBA0:01C9751E] X-SEL-encryption-scan: scanned Cc: cbe-oss-dev@ozlabs.org Subject: [Cbe-oss-dev] [patch 4/5] petitboot: Fix make install X-BeenThere: cbe-oss-dev@ozlabs.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Discussion about Open Source Software for the Cell Broadband Engine List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: cbe-oss-dev-bounces+patchwork-incoming=ozlabs.org@ozlabs.org Errors-To: cbe-oss-dev-bounces+patchwork-incoming=ozlabs.org@ozlabs.org Fix the make target install. Fixes errors like these: /usr/bin/install: cannot stat `petitboot': No such file or directory Signed-off-by: Geoff Levand --- rules.mk | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) --- a/rules.mk +++ b/rules.mk @@ -60,12 +60,11 @@ parser-test: $(parser_test_objs) $(LINK.o) -o $@ $^ install: all - $(INSTALL) -D petitboot $(DESTDIR)$(sbindir)/petitboot - $(INSTALL) -D petitboot-udev-helper \ - $(DESTDIR)$(sbindir)/petitboot-udev-helper - $(INSTALL) -Dd $(DESTDIR)$(pkgdatadir)/artwork/ - $(INSTALL) -t $(DESTDIR)$(pkgdatadir)/artwork/ \ - $(foreach a,$(artwork),$(top_srcdir)/artwork/$(a)) + $(INSTALL) -d $(DESTDIR)$(sbindir)/ + $(INSTALL) discover/pb-discover $(uis) $(DESTDIR)$(sbindir)/ + $(INSTALL) -d $(DESTDIR)$(pkgdatadir)/artwork/ + $(INSTALL) $(addprefix $(top_srcdir)/ui/twin/artwork/,$(artwork)) \ + $(DESTDIR)$(pkgdatadir)/artwork/ dist: $(PACKAGE)-$(VERSION).tar.gz