Fix LOCAL_PATH in mm builds so that overlays work

LOCAL_PATH is a relative path from TOP when making a full build.
This change makes that true for mm builds too.
diff --git a/envsetup.sh b/envsetup.sh
index d797b7c..4ef6d77 100644
--- a/envsetup.sh
+++ b/envsetup.sh
@@ -596,6 +596,8 @@
         # Find the closest Android.mk file.
         T=$(gettop)
         local M=$(findmakefile)
+        # Remove the path to top as the makefilepath needs to be relative
+        local M=`echo $M|sed 's:'$T'/::'`
         if [ ! "$T" ]; then
             echo "Couldn't locate the top of the tree.  Try setting TOP."
         elif [ ! "$M" ]; then