summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-11-28 12:06:47 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-11-28 12:06:47 +0000
commitdfc6ad393008ae36b1769321240791d3a9fe80ab (patch)
tree3c2cb823aded9e89e08132917d0dd872714baf7d
parent6691e6107ccfa547c451d82d75bd9360a312dffb (diff)
downloadrockbox-dfc6ad393008ae36b1769321240791d3a9fe80ab.tar.gz
rockbox-dfc6ad393008ae36b1769321240791d3a9fe80ab.zip
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/Makefile2
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)