diff options
author | JP Rosevear <jpr@ximian.com> | 2004-02-25 06:44:35 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-02-25 06:44:35 +0800 |
commit | bdf73f3dfaafe091c2a6453dc53d25ce1c34bc50 (patch) | |
tree | 958c9348dbdc96b86c10c46e188f34678b6b00c4 | |
parent | 6b5472802f6fc66ed4458659958d0987930a73ed (diff) | |
download | gsoc2013-evolution-bdf73f3dfaafe091c2a6453dc53d25ce1c34bc50.tar.gz gsoc2013-evolution-bdf73f3dfaafe091c2a6453dc53d25ce1c34bc50.tar.zst gsoc2013-evolution-bdf73f3dfaafe091c2a6453dc53d25ce1c34bc50.zip |
fix includes for builddir != srcdir
2004-02-24 JP Rosevear <jpr@ximian.com>
* gui/Makefile.am: fix includes for builddir != srcdir
svn path=/trunk/; revision=24859
-rw-r--r-- | smime/ChangeLog | 4 | ||||
-rw-r--r-- | smime/gui/Makefile.am | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/smime/ChangeLog b/smime/ChangeLog index 73b268ba25..cee6b07c14 100644 --- a/smime/ChangeLog +++ b/smime/ChangeLog @@ -1,3 +1,7 @@ +2004-02-24 JP Rosevear <jpr@ximian.com> + + * gui/Makefile.am: fix includes for builddir != srcdir + 2004-02-11 Jeffrey Stedfast <fejj@ximian.com> * lib/e-pkcs12.c: #include <config.h> diff --git a/smime/gui/Makefile.am b/smime/gui/Makefile.am index 614c2d5525..17526784d6 100644 --- a/smime/gui/Makefile.am +++ b/smime/gui/Makefile.am @@ -1,9 +1,11 @@ INCLUDES = \ -DG_LOG_DOMAIN=\"evolution-smime\" \ -I$(top_srcdir) \ + -I$(top_builddir) \ -I$(top_srcdir)/smime/lib \ + -I$(top_builddir)/smime/lib \ -I$(top_srcdir)/shell \ - -I$(top_builddir) \ + -I$(top_builddir)/shell \ -DEVOLUTION_DATADIR=\""$(datadir)"\" \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ -DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \ |