diff options
author | Sebastian Freundt <hroptatyr@fresse.org> | 2013-04-07 00:02:58 +0000 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2013-04-08 11:40:58 +0900 |
commit | 18bf57c70aafcad031c0b43756b754dcaf6a756a (patch) | |
tree | 4656e01b1cd7d9f1d85f97025ec4308b386e2ee1 /fc-cache | |
parent | 8fd0ed60a62cb7f36b2ade1bd16a66671eaf79da (diff) |
build-chain, replace INCLUDES directive by AM_CPPFLAGS
As of automake-13.1 the INCLUDES directive is no longer supported.
An automake run will return with an error.
This changeset simply follows automake's advice to replace INCLUDES
by AM_CPPFLAGS.
Diffstat (limited to 'fc-cache')
-rw-r--r-- | fc-cache/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fc-cache/Makefile.am b/fc-cache/Makefile.am index 7f7d1b1a..0e107862 100644 --- a/fc-cache/Makefile.am +++ b/fc-cache/Makefile.am @@ -36,7 +36,7 @@ uninstall-local: -$(RM) -rf "$(DESTDIR)$(fc_cachedir)" endif -INCLUDES=-I${top_srcdir} -I${top_srcdir}/src $(WARN_CFLAGS) +AM_CPPFLAGS=-I${top_srcdir} -I${top_srcdir}/src $(WARN_CFLAGS) bin_PROGRAMS=fc-cache |