From f1847ee78368bc4547555699f8a91925f06377fa Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 6 Sep 2004 09:16:06 +0000 Subject: [PATCH] check the size of the .bin file, not the .ucl file git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5047 a1c6a512-1295-4272-9138-f99709370657 --- apps/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Makefile b/apps/Makefile index 06260a019f..68ecf22998 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -167,7 +167,7 @@ $(OBJDIR)/rombox.ucl: $(OBJDIR)/rombox.bin $(MAXOUTFILE) echo "UCLPACK rombox" ; \ uclpack --none $< $@ >/dev/null 2>&1; \ if test -s $@; then \ - perl $(TOOLSDIR)/romsizetest.pl `cat $(MAXOUTFILE)` $@; \ + perl $(TOOLSDIR)/romsizetest.pl `cat $(MAXOUTFILE)` $<; \ if test $$? -ne 0; then \ echo "removing UCL file again, making it a fake one"; \ echo "fake" > $@; \