From patchwork Fri Jul 15 18:37:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Angus Ainslie X-Patchwork-Id: 2729 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 87AF923F3F for ; Fri, 15 Jul 2011 18:38:42 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id 50812A183A3 for ; Fri, 15 Jul 2011 18:38:42 +0000 (UTC) Received: by qyk30 with SMTP id 30so1080079qyk.11 for ; Fri, 15 Jul 2011 11:38:41 -0700 (PDT) Received: by 10.229.25.212 with SMTP id a20mr2957358qcc.148.1310755121711; Fri, 15 Jul 2011 11:38:41 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.217.78 with SMTP id hl14cs55820qcb; Fri, 15 Jul 2011 11:38:41 -0700 (PDT) Received: by 10.143.32.11 with SMTP id k11mr1660530wfj.17.1310755120155; Fri, 15 Jul 2011 11:38:40 -0700 (PDT) Received: from mail-pz0-f46.google.com (mail-pz0-f46.google.com [209.85.210.46]) by mx.google.com with ESMTPS id 16si5131452wfn.12.2011.07.15.11.38.37 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 15 Jul 2011 11:38:39 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.210.46 is neither permitted nor denied by best guess record for domain of angus.ainslie@linaro.org) client-ip=209.85.210.46; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.46 is neither permitted nor denied by best guess record for domain of angus.ainslie@linaro.org) smtp.mail=angus.ainslie@linaro.org Received: by pzk3 with SMTP id 3so1865304pzk.5 for ; Fri, 15 Jul 2011 11:38:37 -0700 (PDT) Received: by 10.68.54.9 with SMTP id f9mr3704798pbp.136.1310755116925; Fri, 15 Jul 2011 11:38:36 -0700 (PDT) Received: from builder.akkea.ca (S0106c43dc79ddf87.cg.shawcable.net [70.73.137.251]) by mx.google.com with ESMTPS id p7sm772136pbn.81.2011.07.15.11.38.35 (version=SSLv3 cipher=OTHER); Fri, 15 Jul 2011 11:38:35 -0700 (PDT) From: Angus Ainslie To: chunsang.jeong@linaro.org Cc: linaro-dev@lists.linaro.org, patches@linaro.org, samsung@lists.linaro.org, Angus Ainslie Subject: [PATCH] Fix building mali driver with make O= option Date: Fri, 15 Jul 2011 12:37:53 -0600 Message-Id: <1310755073-27803-1-git-send-email-angus.ainslie@linaro.org> X-Mailer: git-send-email 1.7.4.1 When building with the make O= option some of the dependenccies and include files can't be resolved. This patch corrects the paths so that the files can be found. Thsis is a patch For Chunsangs repo at : git://git.linaro.org/people/chunsangjeong/mali.git Signed-off-by: Angus Ainslie --- drivers/gpu/arm/mali/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/arm/mali/Makefile b/drivers/gpu/arm/mali/Makefile index 47a147d..8481706 100755 --- a/drivers/gpu/arm/mali/Makefile +++ b/drivers/gpu/arm/mali/Makefile @@ -10,12 +10,12 @@ OSKOS :=linux FILES_PREFIX= -MALI_FILE_PREFIX := drivers/gpu/arm/mali +MALI_FILE_PREFIX := $(srctree)/drivers/gpu/arm/mali KBUILDROOT = # Add platform configuration file for Mali ifeq ($(CONFIG_ARCH_EXYNOS4),y) -MACHDIR := arch/arm/mach-exynos4 +MACHDIR := $(srctree)/arch/arm/mach-exynos4 MALICONFIGDIR :=$(MACHDIR)/include/mach/mali endif