diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-06-21 11:37:28 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-06-27 09:06:21 -0400 |
commit | f0925de16bb70da0bf87332521f54f1defd23500 (patch) | |
tree | 745f9e0b5e3024f1bb2eba05087e44515277e964 /src/fe-common | |
parent | 13ea2cb622f48c528b36970eff5e2cf42b3769fc (diff) | |
download | irssi-f0925de16bb70da0bf87332521f54f1defd23500.zip |
s/INCLUDES/AM_CPPFLAGS/g
Silences warnings on recent automake such as:
src/core/Makefile.am:3: warning: 'INCLUDES' is the old name for
'AM_CPPFLAGS' (or '*_CPPFLAGS')
Diffstat (limited to 'src/fe-common')
-rw-r--r-- | src/fe-common/core/Makefile.am | 2 | ||||
-rw-r--r-- | src/fe-common/irc/Makefile.am | 2 | ||||
-rw-r--r-- | src/fe-common/irc/dcc/Makefile.am | 2 | ||||
-rw-r--r-- | src/fe-common/irc/notifylist/Makefile.am | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/fe-common/core/Makefile.am b/src/fe-common/core/Makefile.am index eb826414..e755b510 100644 --- a/src/fe-common/core/Makefile.am +++ b/src/fe-common/core/Makefile.am @@ -1,6 +1,6 @@ noinst_LIBRARIES = libfe_common_core.a -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \ $(GLIB_CFLAGS) \ -DHELPDIR=\""$(datadir)/irssi/help"\" \ diff --git a/src/fe-common/irc/Makefile.am b/src/fe-common/irc/Makefile.am index 9ca9ccfa..463f145c 100644 --- a/src/fe-common/irc/Makefile.am +++ b/src/fe-common/irc/Makefile.am @@ -2,7 +2,7 @@ SUBDIRS = dcc notifylist noinst_LIBRARIES = libfe_common_irc.a -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/core/ \ -I$(top_srcdir)/src/irc/core/ \ diff --git a/src/fe-common/irc/dcc/Makefile.am b/src/fe-common/irc/dcc/Makefile.am index 7161f262..e0ad6296 100644 --- a/src/fe-common/irc/dcc/Makefile.am +++ b/src/fe-common/irc/dcc/Makefile.am @@ -1,6 +1,6 @@ noinst_LIBRARIES = libfe_irc_dcc.a -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/core/ \ -I$(top_srcdir)/src/irc/core/ \ diff --git a/src/fe-common/irc/notifylist/Makefile.am b/src/fe-common/irc/notifylist/Makefile.am index 94f5a791..b990dcd2 100644 --- a/src/fe-common/irc/notifylist/Makefile.am +++ b/src/fe-common/irc/notifylist/Makefile.am @@ -1,6 +1,6 @@ noinst_LIBRARIES = libfe_irc_notifylist.a -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/core/ \ -I$(top_srcdir)/src/irc/core/ \ |