diff options
author | Elliot Lee <sopwith@src.gnome.org> | 2000-01-07 03:03:52 +0800 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 2000-01-07 03:03:52 +0800 |
commit | 8e431aec558b7bdab46ff5c7519dd3776f816338 (patch) | |
tree | 4b62f080ae37c426bcf3bbcc12c03a0ab052c7a0 | |
parent | 94a922810912fbbe24c96ceca3118b0edf5ee4d7 (diff) | |
download | gsoc2013-evolution-8e431aec558b7bdab46ff5c7519dd3776f816338.tar gsoc2013-evolution-8e431aec558b7bdab46ff5c7519dd3776f816338.tar.gz gsoc2013-evolution-8e431aec558b7bdab46ff5c7519dd3776f816338.tar.bz2 gsoc2013-evolution-8e431aec558b7bdab46ff5c7519dd3776f816338.tar.lz gsoc2013-evolution-8e431aec558b7bdab46ff5c7519dd3776f816338.tar.xz gsoc2013-evolution-8e431aec558b7bdab46ff5c7519dd3776f816338.tar.zst gsoc2013-evolution-8e431aec558b7bdab46ff5c7519dd3776f816338.zip |
Work with builddir != srcdir
* composer/Makefile.am, widgets/e-table/Makefile.am: Work with
builddir != srcdir
svn path=/trunk/; revision=1538
-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 |