summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-01-22 22:39:24 +0100
committerThomas Martitz <kugel@rockbox.org>2012-01-22 22:39:48 +0100
commitaeae94dbc4075b5aecd62ee7afc08f22c2a20e45 (patch)
treee8816dd351a949499ea86e7fd26112edfbb26a98
parent250a73317f6933ab72e1557d479ee3f09412d135 (diff)
downloadrockbox-aeae94dbc4075b5aecd62ee7afc08f22c2a20e45.tar.gz
rockbox-aeae94dbc4075b5aecd62ee7afc08f22c2a20e45.zip
Fix typo in comment.
Change-Id: I3a6813a5eb024aad799bc59c569db54337cb8d1f
-rw-r--r--firmware/asm/asm.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/asm/asm.make b/firmware/asm/asm.make
index 410cb6ca11..17b666ee5e 100644
--- a/firmware/asm/asm.make
+++ b/firmware/asm/asm.make
@@ -19,7 +19,7 @@ ASM_SRC := $(wildcard $(ASM_C_SRC))
19ASM_SRC += $(wildcard $(ASM_S_SRC)) 19ASM_SRC += $(wildcard $(ASM_S_SRC))
20 20
21# GEN_SRC now contains a .c for each file in ASM_DUMMY_SRC that's not in ASM_SRC 21# GEN_SRC now contains a .c for each file in ASM_DUMMY_SRC that's not in ASM_SRC
22# I.e. fallback to a generic C source if no correspinding file in $ARCH is found 22# I.e. fallback to a generic C source if no corresponding file in $ARCH is found
23GEN_SRC := $(filter-out $(notdir $(ASM_SRC:.S=.c)),$(ASM_DUMMY_SRC)) 23GEN_SRC := $(filter-out $(notdir $(ASM_SRC:.S=.c)),$(ASM_DUMMY_SRC))
24GEN_SRC := $(addprefix $(FIRMDIR)/asm/,$(GEN_SRC)) 24GEN_SRC := $(addprefix $(FIRMDIR)/asm/,$(GEN_SRC))
25 25