diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-01-04 13:30:16 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-04 13:30:16 +0000 |
| commit | 2fa3ea313dd6b7c04702f9756329a15ce169a731 (patch) | |
| tree | b6b15ce9522f109e54e93f78ecaa65ee3ef0c5ae | |
| parent | 187b8ed9dfba6ee5699b7e47a12bb698e293c214 (diff) | |
| download | rockbox-2fa3ea313dd6b7c04702f9756329a15ce169a731.zip rockbox-2fa3ea313dd6b7c04702f9756329a15ce169a731.tar.gz rockbox-2fa3ea313dd6b7c04702f9756329a15ce169a731.tar.bz2 rockbox-2fa3ea313dd6b7c04702f9756329a15ce169a731.tar.xz | |
bring back the cat for the preprocessing of the app.lds file, since
Jörg got problems on cygwin with the previous "< file" approach.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4190 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile index 2fc9d97..aaf3147 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 |