[eog] Fix automake deprecation warnings



commit 16a36728e9a6794e4cd07fe586d5eb208f897e9b
Author: Felix Riemann <friemann gnome org>
Date:   Fri Oct 18 21:17:02 2013 +0200

    Fix automake deprecation warnings
    
    INCLUDE is deprecated since 2001.
    Use the equivalent AM_CPPFLAGS variable.

 jpegutils/Makefile.am |    2 +-
 plugins/Makefile.am   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/jpegutils/Makefile.am b/jpegutils/Makefile.am
index aafd1da..a48fd76 100644
--- a/jpegutils/Makefile.am
+++ b/jpegutils/Makefile.am
@@ -1,4 +1,4 @@
-INCLUDES = $(EOG_CFLAGS) \
+AM_CPPFLAGS = $(EOG_CFLAGS) \
        $(EXIF_CFLAGS)
 
 noinst_LTLIBRARIES = libeog-jpegutils.la
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 70a0bc1..8dbf3f1 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = subdir-objects
 
 pluginsdir = $(libdir)/eog/plugins
 
-INCLUDES = \
+AM_CPPFLAGS = \
        -I$(top_srcdir)/src                             \
        $(EOG_CFLAGS)                                   \
        $(WARN_CFLAGS)                                  \


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