From patchwork Thu Jan 29 18:47:06 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 5744701 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 8BF36BF90F for ; Thu, 29 Jan 2015 18:47:43 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DA72C2022D for ; Thu, 29 Jan 2015 18:47:42 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id E86ED2024F for ; Thu, 29 Jan 2015 18:47:39 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7A4A27A00A; Thu, 29 Jan 2015 10:47:38 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) by gabe.freedesktop.org (Postfix) with ESMTP id 1BA926E782 for ; Thu, 29 Jan 2015 10:47:35 -0800 (PST) Received: by mail-wi0-f179.google.com with SMTP id l15so28467882wiw.0 for ; Thu, 29 Jan 2015 10:47:34 -0800 (PST) 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=okoBYBRUToq0CvlmqvSLpD3xGRJMEU+1HCga8QGOcY0=; b=hCUVgQim4gx3bpQlBYo/6qpz3e3ufhbHdQT1tmO9DJMaOxYMGJy4NQ+hLaffoJgqdz DFLATnAVvNb6BwjcsbRJLcHPWFms/uwr07sb6DZ05ekbS6E0OxibenbuzFJBMAzy74+U gQoPoqVRKrMcAlWp5cl2EL4Rfz6VY+3w/3QmVCKHEmUQ3n+M80AhtavKJHr6pq36wgIF PJwX3SPl2UZ476Yd2mn5O0yqgb+VSYJ2ujqoQ+ibkK4nQbGFD1Kirt7Eqd2fkAxwQH2F TvJFY35C15Eub62ksX2gZV9GANh1tnnwynIEcD+aiv3ikTKcwHDLK+32SllpIq02QqsH 8fjg== X-Received: by 10.180.206.14 with SMTP id lk14mr2613175wic.71.1422557254228; Thu, 29 Jan 2015 10:47:34 -0800 (PST) Received: from arch-laptop.localdomain (cpc12-croy20-2-0-cust52.croy.cable.virginm.net. [82.44.54.53]) by mx.google.com with ESMTPSA id hl1sm11558164wjc.18.2015.01.29.10.47.32 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 29 Jan 2015 10:47:33 -0800 (PST) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH 2/6] modetest: move includes into AM_CPPFLAGS Date: Thu, 29 Jan 2015 18:47:06 +0000 Message-Id: <1422557230-22155-3-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1422557230-22155-1-git-send-email-emil.l.velikov@gmail.com> References: <1422557230-22155-1-git-send-email-emil.l.velikov@gmail.com> Cc: emil.l.velikov@gmail.com X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_RP_MATCHES_RCVD, 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 Signed-off-by: Emil Velikov --- tests/modetest/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/modetest/Makefile.am b/tests/modetest/Makefile.am index 40dad3e..a8b9a3a 100644 --- a/tests/modetest/Makefile.am +++ b/tests/modetest/Makefile.am @@ -1,12 +1,12 @@ include Makefile.sources -AM_CFLAGS = $(filter-out -Wpointer-arith, $(WARN_CFLAGS)) - -AM_CFLAGS += \ +AM_CPPFLAGS = \ -I$(top_srcdir)/include/drm \ -I$(top_srcdir)/tests \ -I$(top_srcdir) +AM_CFLAGS = $(filter-out -Wpointer-arith, $(WARN_CFLAGS)) + if HAVE_INSTALL_TESTS bin_PROGRAMS = \ modetest