aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-09-15 07:22:58 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-09-15 07:22:58 +0800
commitb28905748501626d88660ea2dd4d0cb77cc2cbad (patch)
tree693585b58d80defdbe7169861bd8dcfee1899d83 /addressbook
parent8a9ba3cdfb661d407015613a626d943efe9a979c (diff)
downloadgsoc2013-evolution-b28905748501626d88660ea2dd4d0cb77cc2cbad.tar
gsoc2013-evolution-b28905748501626d88660ea2dd4d0cb77cc2cbad.tar.gz
gsoc2013-evolution-b28905748501626d88660ea2dd4d0cb77cc2cbad.tar.bz2
gsoc2013-evolution-b28905748501626d88660ea2dd4d0cb77cc2cbad.tar.lz
gsoc2013-evolution-b28905748501626d88660ea2dd4d0cb77cc2cbad.tar.xz
gsoc2013-evolution-b28905748501626d88660ea2dd4d0cb77cc2cbad.tar.zst
gsoc2013-evolution-b28905748501626d88660ea2dd4d0cb77cc2cbad.zip
[Automake 1.5 fixes pointed out by Richard Boulton
<richard@tartarus.org>, as per #9258.] * backend/pas/Makefile.am: Rename `LDAP_BACKEND_SOURCES' to `LDAP_BACKEND_FILES'. * backend/ebook/Makefile.am: Set CLEANFILES directly instead of using `+='. svn path=/trunk/; revision=12839
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog11
-rw-r--r--addressbook/backend/ebook/Makefile.am2
-rw-r--r--addressbook/backend/pas/Makefile.am8
3 files changed, 16 insertions, 5 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 959ebfe279..9b394de644 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,14 @@
+2001-09-14 Ettore Perazzoli <ettore@ximian.com>
+
+ [Automake 1.5 fixes pointed out by Richard Boulton
+ <richard@tartarus.org>, as per #9258.]
+
+ * backend/pas/Makefile.am: Rename `LDAP_BACKEND_SOURCES' to
+ `LDAP_BACKEND_FILES'.
+
+ * backend/ebook/Makefile.am: Set CLEANFILES directly instead of
+ using `+='.
+
2001-09-13 Chris Toshok <toshok@ximian.com>
* backend/pas/pas-backend-ldap.c (pas_backend_ldap_connect): use
diff --git a/addressbook/backend/ebook/Makefile.am b/addressbook/backend/ebook/Makefile.am
index 37a940d515..c2bcbe7c75 100644
--- a/addressbook/backend/ebook/Makefile.am
+++ b/addressbook/backend/ebook/Makefile.am
@@ -164,7 +164,7 @@ load_gnomecard_addressbook_LDADD = \
BUILT_SOURCES = $(CORBA_SOURCE)
-CLEANFILES += $(BUILT_SOURCES)
+CLEANFILES = $(BUILT_SOURCES)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
diff --git a/addressbook/backend/pas/Makefile.am b/addressbook/backend/pas/Makefile.am
index 399ca2956a..d5f4813d8d 100644
--- a/addressbook/backend/pas/Makefile.am
+++ b/addressbook/backend/pas/Makefile.am
@@ -23,10 +23,10 @@ INCLUDES = \
$(BONOBO_GNOME_CFLAGS) \
$(EXTRA_GNOME_CFLAGS)
-LDAP_BACKEND_SOURCES = pas-backend-ldap.c pas-backend-ldap.h
+LDAP_BACKEND_FILES = pas-backend-ldap.c pas-backend-ldap.h
if ENABLE_LDAP
-LDAP_BACKEND = $(LDAP_BACKEND_SOURCES)
+LDAP_BACKEND = $(LDAP_BACKEND_FILES)
else
LDAP_BACKEND =
endif
@@ -52,9 +52,9 @@ libpas_a_SOURCES = \
pas-card-cursor.h
BUILT_SOURCES = $(CORBA_SOURCE)
-CLEANFILES += $(BUILT_SOURCES)
+CLEANFILES = $(BUILT_SOURCES)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
-EXTRA_DIST = $(LDAP_BACKEND_SOURCES)
+EXTRA_DIST = $(LDAP_BACKEND_FILES)