diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-28 00:00:19 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-28 00:00:19 +0800 |
commit | 752db1683d72def54b114b246da48cba89258278 (patch) | |
tree | acff6cc20175fd295d102711bd9ac7868d5477a7 | |
parent | 51ddf878bd648c81c5cd47ca3703ed0cea71a504 (diff) | |
download | gsoc2013-evolution-752db1683d72def54b114b246da48cba89258278.tar gsoc2013-evolution-752db1683d72def54b114b246da48cba89258278.tar.gz gsoc2013-evolution-752db1683d72def54b114b246da48cba89258278.tar.bz2 gsoc2013-evolution-752db1683d72def54b114b246da48cba89258278.tar.lz gsoc2013-evolution-752db1683d72def54b114b246da48cba89258278.tar.xz gsoc2013-evolution-752db1683d72def54b114b246da48cba89258278.tar.zst gsoc2013-evolution-752db1683d72def54b114b246da48cba89258278.zip |
Fix builddir != srcdir.
svn path=/trunk/; revision=3759
-rw-r--r-- | filter/ChangeLog | 6 | ||||
-rw-r--r-- | filter/Makefile.am | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index a893045937..c76176857f 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,9 @@ +2000-06-27 Ettore Perazzoli <ettore@helixcode.com> + + * Makefile.am (INCLUDES): `-I$(top_builddir)/shell' so that it + works with builddir != srcdir. [We need to #include + "Evolution.h".] + 2000-06-27 Michael Zucchi <zucchi@zedzone.mmc.com.au> * Makefile.am (INCLUDES): Add the shell dir for includes (for diff --git a/filter/Makefile.am b/filter/Makefile.am index 152f7a11e1..2362e42c82 100644 --- a/filter/Makefile.am +++ b/filter/Makefile.am @@ -5,6 +5,7 @@ INCLUDES = \ -I $(top_srcdir)/e-util \ -I $(top_srcdir)/shell \ -I $(top_srcdir)/camel/providers/mbox \ + -I $(top_builddir)/shell \ -I $(GNOME_INCLUDEDIR) \ $(GTKHTML_CFLAGS) \ -DG_LOG_DOMAIN=\"filter\" |