diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-28 12:06:47 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-28 12:06:47 +0000 |
commit | dfc6ad393008ae36b1769321240791d3a9fe80ab (patch) | |
tree | 3c2cb823aded9e89e08132917d0dd872714baf7d | |
parent | 6691e6107ccfa547c451d82d75bd9360a312dffb (diff) |
No more dependency of the cat command
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4077 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index 558afacc10..fb54d8d4ac 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -45,7 +45,7 @@ all: $(ROCKS) # MEM should be passed on to this makefile with the chosen memory size given # in number of MB $(LINKFILE): $(LDS) - cat $< | $(CC) -DMEMORYSIZE=$(MEM) $(DEFINES) -E -P - >$@ + $(CC) -DMEMORYSIZE=$(MEM) $(DEFINES) -x c -E -P $< >$@ clean: -rm -f $(ROCKS) $(LINKFILE) |