From 64b398573da586e67ef266ece6e8ef147c2e0b66 Mon Sep 17 00:00:00 2001
From: Ron <ron@debian.org>
Date: Sat, 29 Jun 2013 15:40:27 +0930
Subject: [PATCH] Replace INCLUDES with AM_CPPFLAGS

Automake 1.13 complains that INCLUDES is obsoleted now.
---
 Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am
index 86cdbf963..28694335a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -5,7 +5,8 @@ lib_LTLIBRARIES = libopus.la
 
 DIST_SUBDIRS = doc
 
-INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk -I$(top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed
+AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk \
+              -I$(top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed
 
 include celt_sources.mk
 include silk_sources.mk
-- 
GitLab