From 2fa3ea313dd6b7c04702f9756329a15ce169a731 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 4 Jan 2004 13:30:16 +0000 Subject: [PATCH] =?UTF-8?q?bring=20back=20the=20cat=20for=20the=20preproce?= =?UTF-8?q?ssing=20of=20the=20app.lds=20file,=20since=20J=C3=B6rg=20got=20?= =?UTF-8?q?problems=20on=20cygwin=20with=20the=20previous=20"<=20file"=20a?= =?UTF-8?q?pproach.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4190 a1c6a512-1295-4272-9138-f99709370657 --- apps/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Makefile b/apps/Makefile index 2fc9d97adb..aaf31479f4 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -101,7 +101,7 @@ $(OBJDIR)/librockbox.a: # MEM should be passed on to this makefile with the chosen memory size given # in number of MB $(LINKFILE): $(LDS) - $(CC) -DMEMORYSIZE=$(MEM) $(INCLUDES) $(TARGET) $(DEFINES) -E -P - < $< >$@ + cat $< | $(CC) -DMEMORYSIZE=$(MEM) $(INCLUDES) $(TARGET) $(DEFINES) -E -P - >$@ $(OBJDIR)/rockbox.elf : $(OBJS) $(LINKFILE) $(OBJDIR)/librockbox.a $(CC) -Os -nostdlib -o $@ $(OBJS) -L$(OBJDIR) -lrockbox -lgcc -L$(FIRMWARE) -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/rockbox.map