From patchwork Thu Aug 29 20:31:53 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 2851801 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id CB4159F88A for ; Fri, 30 Aug 2013 05:33:53 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0B0C6201FE for ; Fri, 30 Aug 2013 05:33:53 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 31359201EC for ; Fri, 30 Aug 2013 05:33:52 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 11AACE7A4F for ; Thu, 29 Aug 2013 22:33:52 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-ee0-f41.google.com (mail-ee0-f41.google.com [74.125.83.41]) by gabe.freedesktop.org (Postfix) with ESMTP id E9930E78A5 for ; Thu, 29 Aug 2013 13:32:57 -0700 (PDT) Received: by mail-ee0-f41.google.com with SMTP id d17so495926eek.28 for ; Thu, 29 Aug 2013 13:32:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=rYZKFtsw4fLJE5XBYYKuX5woLNPcdb+gha6nigsWN58=; b=U0KzpFHSj6gSszNraCXI0fDM9gYxzJTZAWfcDPmPUoMXEOAAYBuhRv/dcwJMpnCtIO vTvJ/zZHxQemE1Xr6vyJNczKlmiIZ/JFEmnVGCXVJld9AXp0/OgCz2R+9MEsBBlZGkYg rrJtORWHakvSPoldqJrzkaMi9/WDvjlqJRTlwFRdh1CmX8W4zu8o/9nusr7Knjx6xNrs 92awjjUjKe8sj15LoJpbmwcOeOkjp/zTIi2tSsCFhNezTt/qBphOpxrXzh0ou+rVX861 8PXU1l9dyrxPO6a9UdSiysPHwjnOyfA41x2etPhLhKLRUo2X62YNKTBYiKgai2rx3yqT Tnyg== X-Received: by 10.14.4.1 with SMTP id 1mr6817818eei.21.1377808376704; Thu, 29 Aug 2013 13:32:56 -0700 (PDT) Received: from localhost.localdomain (cpc20-stap10-2-0-cust563.12-2.cable.virginmedia.com. [82.20.130.52]) by mx.google.com with ESMTPSA id h52sm49080065eez.3.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 29 Aug 2013 13:32:55 -0700 (PDT) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH 5/6] freedreno: set automake options to include subdir-objects Date: Thu, 29 Aug 2013 21:31:53 +0100 Message-Id: <1377808314-30699-6-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 1.8.4 In-Reply-To: <1377808314-30699-1-git-send-email-emil.l.velikov@gmail.com> References: <1377808314-30699-1-git-send-email-emil.l.velikov@gmail.com> X-Mailman-Approved-At: Thu, 29 Aug 2013 22:26:43 -0700 Cc: emil.l.velikov@gmail.com, Rob Clark X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org X-Spam-Status: No, score=-6.2 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Handles automake complains about lack of forward-compatibility, due to the source files in the kgsl and msm backends/folders. Cc: Rob Clark Signed-off-by: Emil Velikov --- I'm suspecting that the warning is caused as Archlinux always keeps track with latest releases, whereas other distributions prefer to use a more tested software automake 1.14 autoconf 2.69 --- freedreno/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/freedreno/Makefile.am b/freedreno/Makefile.am index ec7e359..7903e5b 100644 --- a/freedreno/Makefile.am +++ b/freedreno/Makefile.am @@ -1,3 +1,5 @@ +AUTOMAKE_OPTIONS=subdir-objects + AM_CFLAGS = \ $(WARN_CFLAGS) \ -I$(top_srcdir) \