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/irc/flood/Makefile.am | |
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/irc/flood/Makefile.am')
-rw-r--r-- | src/irc/flood/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/flood/Makefile.am b/src/irc/flood/Makefile.am index a5ba65b0..1c4d786a 100644 --- a/src/irc/flood/Makefile.am +++ b/src/irc/flood/Makefile.am @@ -1,6 +1,6 @@ noinst_LIBRARIES = libirc_flood.a -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/core/ \ -I$(top_srcdir)/src/irc/core/ \ |