From patchwork Tue Jan 13 01:31:40 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [4/5] petitboot: Fix make install Date: Mon, 12 Jan 2009 15:31:40 -0000 From: Geoff Levand X-Patchwork-Id: 18127 Message-Id: <496BEEFC.4020904@am.sony.com> To: Jeremy Kerr Cc: cbe-oss-dev@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