diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-27 23:51:13 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-27 23:51:13 +0800 |
commit | 5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6 (patch) | |
tree | 4deabbec972435edac38891b3ef0179831676ca7 | |
parent | 3dc77052b55a3061073dcf0bee70b0926bab7b79 (diff) | |
download | gsoc2013-evolution-5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6.tar gsoc2013-evolution-5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6.tar.gz gsoc2013-evolution-5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6.tar.bz2 gsoc2013-evolution-5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6.tar.lz gsoc2013-evolution-5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6.tar.xz gsoc2013-evolution-5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6.tar.zst gsoc2013-evolution-5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6.zip |
Fix compilation with builddir != srcdir.
svn path=/trunk/; revision=3757
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/Makefile.am | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 93f2fb4828..6acb182f52 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2000-06-27 Ettore Perazzoli <ettore@helixcode.com> + + * Makefile.am (INCLUDES): `-I$(top_srcdir)' to fix compilation + with builddir != srcdir. + 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-canvas-vbox.c and e-canvas-vbox.h. diff --git a/e-util/Makefile.am b/e-util/Makefile.am index 11066ec89d..0e9680dc3d 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -1,6 +1,7 @@ imagesdir = $(datadir)/images/evolution INCLUDES = \ + -I$(top_srcdir) \ $(GNOME_INCLUDEDIR) \ -DEVOLUTION_IMAGES=\""$(imagesdir)"\" \ -DG_LOG_DOMAIN=\"e-utils\" |