summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-08-15 12:03:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-08-15 12:03:21 +0000
commit05a6c98d243af03a8a39d27f294104feade378c1 (patch)
tree2f08256d315f0b08c3b1ba11f931a2f694a6a37c
parent0624bd1e17e2bcd4479c44baa1087fc511093786 (diff)
downloadrockbox-05a6c98d243af03a8a39d27f294104feade378c1.zip
rockbox-05a6c98d243af03a8a39d27f294104feade378c1.tar.gz
rockbox-05a6c98d243af03a8a39d27f294104feade378c1.tar.bz2
rockbox-05a6c98d243af03a8a39d27f294104feade378c1.tar.xz
use the host cc when preprocessing features
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14350 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 0543416..cc22591 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -204,7 +204,7 @@ include $(TOOLSDIR)/make.inc
#
$(OBJDIR)/features: features.txt
- $(SILENT)cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \
+ $(SILENT)cat $< | $(HOSTCC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \
$(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -imacros "config.h" -imacros "button.h" - | \
grep -v "^\#" | grep -v "^$$" > $@; \
echo "" >/dev/null