aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-03-14 19:42:37 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-03-14 19:42:37 +0800
commit1a983f0dd7a01d23c2d06f870f7208525e0e0f63 (patch)
tree101aafae7f138ea315d2eda26821fadd68657eca /shell
parent0e9c0268a8ae99b88d7b98539181c0e938e5cb53 (diff)
downloadgsoc2013-evolution-1a983f0dd7a01d23c2d06f870f7208525e0e0f63.tar
gsoc2013-evolution-1a983f0dd7a01d23c2d06f870f7208525e0e0f63.tar.gz
gsoc2013-evolution-1a983f0dd7a01d23c2d06f870f7208525e0e0f63.tar.bz2
gsoc2013-evolution-1a983f0dd7a01d23c2d06f870f7208525e0e0f63.tar.lz
gsoc2013-evolution-1a983f0dd7a01d23c2d06f870f7208525e0e0f63.tar.xz
gsoc2013-evolution-1a983f0dd7a01d23c2d06f870f7208525e0e0f63.tar.zst
gsoc2013-evolution-1a983f0dd7a01d23c2d06f870f7208525e0e0f63.zip
builddir != srcdir fixes. Yay!
svn path=/trunk/; revision=8706
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/importer/Makefile.am11
2 files changed, 13 insertions, 4 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 1640522206..ec45ae5c65 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,9 @@
+2001-03-14 Ettore Perazzoli <ettore@ximian.com>
+
+ * importer/Makefile.am (INCLUDES): Remove `-g Wall' and friends.
+ Use `$(EXTRA_GNOME_CFLAGS)' instead of `$(GNOME_INCLUDEDIR)'. Add
+ `-I$(top_builddir)/shell'.
+
2001-03-13 Iain Holmes <iain@ximian.com>
* importer/intelligent.c (start_importer): Add a "Don't ask me again"
diff --git a/shell/importer/Makefile.am b/shell/importer/Makefile.am
index 975d5a372a..7d05b190c8 100644
--- a/shell/importer/Makefile.am
+++ b/shell/importer/Makefile.am
@@ -1,7 +1,10 @@
-INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/shell \
- -I$(includedir) $(GNOME_INCLUDEDIR) \
- -DG_LOG_DOMAIN=\"Evolution-Importer\" -g -Wall \
- -Wmissing-prototypes -Wmissing-declarations \
+INCLUDES = \
+ -I$(top_srcdir) \
+ -I$(top_srcdir)/shell \
+ -I$(top_builddir)/shell \
+ -I$(includedir) \
+ $(EXTRA_GNOME_CFLAGS) \
+ -DG_LOG_DOMAIN=\"Evolution-Importer\" \
-DEVOLUTION_GLADEDIR=\"$(datadir)/evolution/glade\"
lib_LTLIBRARIES = libevolution-importer.la