androidbp: Add LOCAL_MODULE_MAKEFILE

We're hardcoding LOCAL_PATH instead of using the my-dir macro.
LOCAL_MODULE_MAKEFILE is the other variable set up by this macro, used
to ensure that changes to the makefile rebuilds the objects defined in
the makefile.

Change-Id: I994b72ab9053d5a057eb3e35a8710038800432eb
This commit is contained in:
Dan Willemsen 2015-06-10 16:18:58 -07:00
parent cdd1a99096
commit c2666e664f
1 changed files with 1 additions and 0 deletions

View File

@ -346,6 +346,7 @@ func (w *androidMkWriter) handleLocalPath() error {
}
w.WriteString("LOCAL_PATH := " + rel + "\n")
w.WriteString("LOCAL_MODULE_MAKEFILE := $(lastword $(MAKEFILE_LIST))\n\n")
return nil
}