OSDN Git Service

Fix compilation of assembly files (e.g. foo.S), by removing a typo.
authorDavid 'Digit' Turner <digit@google.com>
Mon, 20 Jul 2009 13:38:48 +0000 (15:38 +0200)
committerDavid 'Digit' Turner <digit@google.com>
Mon, 20 Jul 2009 13:38:48 +0000 (15:38 +0200)
build/core/definitions.mk
docs/CHANGES.TXT

index 56e50e5..b5079e2 100644 (file)
@@ -404,7 +404,7 @@ compile-c-source = $(eval $(call ev-compile-c-source,$1,$(1:%.c=%.o)))
 # Usage     : $(call compile-s-source,<srcfile>)
 # Rationale : Setup everything required to build a single Assembly source file
 # -----------------------------------------------------------------------------
-compile-s-source = $(eval $(call ev-compile-s-source,$1,$(1:%.S=%.o)))
+compile-s-source = $(eval $(call ev-compile-c-source,$1,$(1:%.S=%.o)))
 
 
 # -----------------------------------------------------------------------------
index 2509fe9..8f30f1f 100644 (file)
@@ -30,5 +30,7 @@ current version
 
 - Add support for LOCAL_C_INCLUDES in Android.mk
 
+- Fix compilation of assembler files (e.g. foo.S)
+
 -------------------------------------------------------------------------------
 android-1.5_r1 released.