diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | composer/Makefile.am | 2 | ||||
-rw-r--r-- | widgets/e-table/Makefile.am | 3 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2000-01-06 Elliot Lee <sopwith@redhat.com> + * composer/Makefile.am, widgets/e-table/Makefile.am: Work with + builddir != srcdir + 2000-01-05 Miguel de Icaza <miguel@gnu.org> * shell/Makefile.am: New file. diff --git a/composer/Makefile.am b/composer/Makefile.am index 6983084e12..4b2c3720dc 100644 --- a/composer/Makefile.am +++ b/composer/Makefile.am @@ -6,6 +6,8 @@ glade_DATA = \ e-msg-composer.glade INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ -I$(top_srcdir)/camel \ -I$(top_builddir)/camel \ $(GNOME_INCLUDEDIR) diff --git a/widgets/e-table/Makefile.am b/widgets/e-table/Makefile.am index 8f81a8076c..3d972991f4 100644 --- a/widgets/e-table/Makefile.am +++ b/widgets/e-table/Makefile.am @@ -1,6 +1,7 @@ INCLUDES = \ $(GNOME_INCLUDEDIR) \ - -I$(top_srcdir)/e-util + -I$(top_srcdir)/e-util \ + -I$(top_srcdir) noinst_LIBRARIES = \ libetable.a |