From 721644f4b21f764b2c06794849eb16e705e468a9 Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Wed, 20 May 2015 10:50:45 -0700 Subject: [PATCH] Fix automake warning. Newer versions prefer AM_CPPFLAGS to INCLUDES. --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index b207e78..9472626 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include lib_LTLIBRARIES = libogg.la -- GitLab