diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-07-01 05:18:36 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-01 05:20:23 +0800 |
commit | 42e75c9162402078ac629740821c3533925ee342 (patch) | |
tree | ded7de519f1af08a9b80ebc4c4db8df9e99bf9ba /calendar/gui | |
parent | 0169e6a289a1836ca54541797e2d6c9cad2ada3d (diff) | |
download | gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.gz gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.bz2 gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.lz gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.xz gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.zst gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.zip |
Use AM_CPPFLAGS instead of INCLUDE in all Makefile.am.
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/Makefile.am | 2 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/Makefile.am | 2 | ||||
-rw-r--r-- | calendar/gui/dialogs/Makefile.am | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index 95576afc33..6b515f442a 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -38,7 +38,7 @@ search_files = tasktypes.xml memotypes.xml caltypes.xml ruledir = $(privdatadir) rule_DATA = $(search_files) -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"calendar-gui\" \ -I$(top_builddir)/shell \ -I$(top_srcdir)/shell \ diff --git a/calendar/gui/alarm-notify/Makefile.am b/calendar/gui/alarm-notify/Makefile.am index 9b001a0da0..680c5e95e5 100644 --- a/calendar/gui/alarm-notify/Makefile.am +++ b/calendar/gui/alarm-notify/Makefile.am @@ -17,7 +17,7 @@ $(CORBA_GENERATED_C): $(CORBA_GENERATED_H) privlibexec_PROGRAMS = evolution-alarm-notify -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"evolution-alarm-notify\" \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ diff --git a/calendar/gui/dialogs/Makefile.am b/calendar/gui/dialogs/Makefile.am index 8e7a1bf916..a9c752701d 100644 --- a/calendar/gui/dialogs/Makefile.am +++ b/calendar/gui/dialogs/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"calendar-gui\" \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ |