From patchwork Sun Aug 7 18:01:48 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bart Van Assche X-Patchwork-Id: 1042622 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p77IWTmF001091 for ; Sun, 7 Aug 2011 18:32:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754493Ab1HGSca (ORCPT ); Sun, 7 Aug 2011 14:32:30 -0400 Received: from jester.euphonynet.be ([212.87.96.13]:53932 "EHLO mailpush2.euphonynet.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754586Ab1HGSc2 (ORCPT ); Sun, 7 Aug 2011 14:32:28 -0400 Received: from ripley.euphonynet.be (ripley.euphonynet.be [212.87.96.9]) by mailpush2.euphonynet.be (Postfix) with ESMTP id 5635B4F80AD; Sun, 7 Aug 2011 20:01:55 +0200 (CEST) Received: from localhost (scan03.euphonynet.be [212.87.96.25]) by ripley.euphonynet.be (Postfix) with ESMTP id 4AB9B5FACBDE1; Sun, 7 Aug 2011 20:01:55 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at euphonynet.be Received: from ripley.euphonynet.be ([212.87.96.9]) by localhost (scan03.euphonynet.be [212.87.96.23]) (amavisd-new, port 10024) with ESMTP id 0TL-EhH9fbE0; Sun, 7 Aug 2011 20:01:49 +0200 (CEST) Received: from asus.localnet (unknown [85.10.72.182]) by ripley.euphonynet.be (Postfix) with ESMTP id 86FAD5FACBA67; Sun, 7 Aug 2011 20:01:48 +0200 (CEST) From: Bart Van Assche To: linux-rdma@vger.kernel.org Subject: [PATCH 2/7] Makefile.am: Fix an automake warning Date: Sun, 7 Aug 2011 20:01:48 +0200 User-Agent: KMail/1.13.6 (Linux/2.6.38.8-scst; KDE/4.6.0; x86_64; ; ) Cc: Roland Dreier References: <201108072000.16383.bvanassche@acm.org> In-Reply-To: <201108072000.16383.bvanassche@acm.org> MIME-Version: 1.0 Message-Id: <201108072001.48196.bvanassche@acm.org> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Sun, 07 Aug 2011 18:32:31 +0000 (UTC) Avoid that automake reports the following warning message: Makefile.am:1: `INCLUDES' is the old name for `AM_CPPFLAGS' (or `*_CPPFLAGS') A quote from the automake manual: INCLUDES This does the same job as AM_CPPFLAGS (or any per-target _CPPFLAGS variable if it is used). It is an older name for the same functionality. This variable is deprecated; we suggest using AM_CPPFLAGS and per-target _CPPFLAGS instead. Signed-off-by: Bart Van Assche --- Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.am b/Makefile.am index e6a50ba..cd00a65 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(srcdir)/include +AM_CPPFLAGS = -I$(srcdir)/include lib_LTLIBRARIES = src/libibverbs.la