public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH] Fix LIBDRM_PATH for top android build
@ 2014-01-23 18:29 joao.santos
  2014-01-28 13:30 ` Damien Lespiau
  2014-01-31  9:02 ` Mateo Lozano, Oscar
  0 siblings, 2 replies; 6+ messages in thread
From: joao.santos @ 2014-01-23 18:29 UTC (permalink / raw)
  To: intel-gfx

From: Joao Santos <joao.santos@intel.com>

Changed TOP to ANDROID_BUILD_TOP to allow package to be compiled as part
of a top build; LIBDRM_PATH changed to PATH_LIBDRM because otherwise it
cannot be written to when in a top build (must be getting used in some
other makefile).

Issue: VIZ-3495
Signed-off-by: Joao Santos <joao.santos@intel.com>

diff --git a/tests/Android.mk b/tests/Android.mk
index abccb7f..82b28cd 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -2,17 +2,17 @@ include $(LOCAL_PATH)/tests/Makefile.sources
 include $(LOCAL_PATH)/lib/Makefile.sources
 
 LIBPCIACCESS_PATH := $(firstword $(wildcard  \
-   $(TOP)/external/PRIVATE/libpciaccess      \
-   $(TOP)/hardware/intel/libpciaccess        \
-   $(TOP)/external/libpciaccess))
+   $(ANDROID_BUILD_TOP)/external/PRIVATE/libpciaccess      \
+   $(ANDROID_BUILD_TOP)/hardware/intel/libpciaccess        \
+   $(ANDROID_BUILD_TOP)/external/libpciaccess))
 ifeq ($(LIBPCIACCESS_PATH),)
    $(error "Unable to find libpciaccess!")
 endif
 
-LIBDRM_PATH := $(firstword $(wildcard  \
-   $(TOP)/external/PRIVATE/drm         \
-   $(TOP)/external/drm))
-ifeq ($(LIBDRM_PATH),)
+PATH_LIBDRM = $(firstword $(wildcard  \
+   $(ANDROID_BUILD_TOP)/external/PRIVATE/drm         \
+   $(ANDROID_BUILD_TOP)/external/drm))
+ifeq ($(PATH_LIBDRM),)
    $(error "Unable to find libdrm!")
 endif
 
@@ -66,8 +66,8 @@ define add_test
 
     LOCAL_C_INCLUDES +=              \
        $(LOCAL_PATH)/lib             \
-       $(LIBDRM_PATH)/include/drm    \
-       $(LIBDRM_PATH)/intel          \
+       $(PATH_LIBDRM)/include/drm    \
+       $(PATH_LIBDRM)/intel          \
        $(LIBPCIACCESS_PATH)/include
 
     LOCAL_CFLAGS += -DHAVE_STRUCT_SYSINFO_TOTALRAM
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-02-07 14:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-23 18:29 [PATCH] Fix LIBDRM_PATH for top android build joao.santos
2014-01-28 13:30 ` Damien Lespiau
2014-01-31  9:02 ` Mateo Lozano, Oscar
2014-01-31  9:36   ` Barbalho, Rafael
2014-01-31 10:20     ` Damien Lespiau
2014-02-07 14:39       ` Santos, Joao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox