fluid-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[fluid-dev] [PATCH 2/9] Don't use the old INCLUDES name in src/Makefile.


From: Antonio Ospite
Subject: [fluid-dev] [PATCH 2/9] Don't use the old INCLUDES name in src/Makefile.am
Date: Wed, 8 Oct 2014 16:08:18 +0200

Fix this warning:

  src/Makefile.am:167: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' 
(or '*_CPPFLAGS')

However, fluidsynth is using C so it's AM_CFLAGS instead of AM_CPPFLAGS.
---
 fluidsynth/src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fluidsynth/src/Makefile.am b/fluidsynth/src/Makefile.am
index 5244322..4fec1a6 100644
--- a/fluidsynth/src/Makefile.am
+++ b/fluidsynth/src/Makefile.am
@@ -164,7 +164,7 @@ libfluidsynth_la_SOURCES = \
     bindings/fluid_ladspa.h \
     bindings/fluid_filerenderer.c 
 
-INCLUDES = -I$(top_srcdir)/include \
+AM_CFLAGS = -I$(top_srcdir)/include \
   -I$(top_srcdir)/src \
   -I$(top_srcdir)/src/drivers \
   -I$(top_srcdir)/src/synth \
-- 
2.1.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]