diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2012-10-31 20:40:40 +0000 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2012-10-31 20:40:40 +0000 |
commit | 92eee9068a51d1577568715a380953379ec865f4 (patch) | |
tree | 8331052abc0ce8af28c0323291b39086713db0aa /src/modules/cpufreq | |
parent | 8afe8dcff499b11238a2f25d45f9925380f7f42f (diff) | |
download | enlightenment-92eee9068a51d1577568715a380953379ec865f4.tar.gz |
e: use AM_CPPFLAGS instead of INCLUDES
Get rid of warnings like below with recent automake (1.11 and newer):
src/bin/Makefile.am:6: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/bin/Makefile.am: installing './depcomp'
src/modules/access/Makefile.am:11: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
SVN revision: 78720
Diffstat (limited to 'src/modules/cpufreq')
-rw-r--r-- | src/modules/cpufreq/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/cpufreq/Makefile.am b/src/modules/cpufreq/Makefile.am index 5d0a6fc537..f8bc65f79e 100644 --- a/src/modules/cpufreq/Makefile.am +++ b/src/modules/cpufreq/Makefile.am @@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop EXTRA_DIST = $(files_DATA) # the module .so file -INCLUDES = -I. \ +AM_CPPFLAGS = -I. \ -I$(top_srcdir) \ -I$(top_srcdir)/src/modules/$(MODULE) \ -I$(top_srcdir)/src/bin \ |