diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | my-evolution/Makefile.am | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2001-06-08 Jason Leach <jleach@ximian.com> + + * my-evolution/Makefile.am (INCLUDES): builddir != srcdir fix. + 2001-06-08 Iain Holmes <iain@ximian.com> * Makefile.am: Byebye executive-summary, hello my-evolution diff --git a/my-evolution/Makefile.am b/my-evolution/Makefile.am index 42f7327d84..d48af53304 100644 --- a/my-evolution/Makefile.am +++ b/my-evolution/Makefile.am @@ -2,9 +2,10 @@ bin_PROGRAMS = evolution-executive-summary INCLUDES = \ -I$(top_srcdir) \ - -I$(top_builddir)/shell \ -I$(top_srcdir)/shell \ + -I$(top_builddir)/shell \ -I$(top_srcdir)/calendar \ + -I$(top_builddir)/calendar/cal-client \ $(EXTRA_GNOME_CFLAGS) \ $(GNOME_VFS_CFLAGS) \ $(GTKHTML_CFLAGS) \ |