From: Bart Van Assche Date: Tue, 16 Jul 2013 21:59:46 +0000 (+0200) Subject: Makefile.am: Fix an automake warning X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=31dc9e346e81b2e4c1bbf1effcbbea9299c86ad2;p=~shefty%2Flibrdmacm.git Makefile.am: Fix an automake warning Fix the following automake 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 Signed-off-by: Yann Droneaud Signed-off-by: Sean Hefty --- diff --git a/Makefile.am b/Makefile.am index 31981651..e1be9f30 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(srcdir)/include +AM_CPPFLAGS = -I$(srcdir)/include rslibdir = $(libdir)/rsocket lib_LTLIBRARIES = src/librdmacm.la