From a4aaa071767268a72b77eab1a61f0ae7fff0b85d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 31 Jul 2003 21:59:06 +0000 Subject: If uclpack is not there, produce a faked one to avoid getting that message more often than we need. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3906 a1c6a512-1295-4272-9138-f99709370657 --- apps/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/Makefile b/apps/Makefile index 6c0efd575a..e9667bb6aa 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -99,12 +99,13 @@ $(OBJDIR)/$(OUTNAME) : $(OBJDIR)/rockbox.bin $(TOOLSDIR)/scramble $(SCRAMBLE_OPT) $(OBJDIR)/rockbox.bin $(OBJDIR)/$(OUTNAME) $(OBJDIR)/rockbox.ucl: $(OBJDIR)/rockbox.bin - @a=`uclpack -h 2>/dev/null`; \ + @a=`2uclpack -h 2>/dev/null`; \ if test -n "$$a"; then \ echo "runs uclpack"; \ uclpack --best --2e $(OBJDIR)/rockbox.bin $(OBJDIR)/rockbox.ucl >/dev/null 2>&1; \ else \ - echo "no uclpack command found, not making any UCL file"; \ + echo "no uclpack command found, makes a fake UCL file"; \ + echo "fake" > $@; \ fi $(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS -- cgit v1.2.3