From f726d09951edb0bbe23464477ce26321cc426def Mon Sep 17 00:00:00 2001 From: Alvaro Soliverez Date: Tue, 3 Apr 2012 17:39:21 -0300 Subject: [PATCH] AOSP does not handle Android includes with relative paths correctly. This uses a variable that holds the local directory to include the file correctly. --- Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.mk b/Android.mk index 4cab566..a9bc79f 100644 --- a/Android.mk +++ b/Android.mk @@ -2,7 +2,7 @@ LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) -include ../telepathy-glib/telepathy-glib/codegen.am +include $(LOCAL_PATH)/telepathy-glib/codegen.am TELEPATHY_GLIB_BUILT_SOURCES := \ telepathy-glib/telepathy-glib.pc \ -- 1.7.9.2