diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-09-15 07:23:33 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-09-15 07:23:33 +0800 |
commit | 8911460699f764a94975e85fb4bbff6d39d57dec (patch) | |
tree | 4a3cc55e36acf1d26d995b7647543761d47f6094 | |
parent | b28905748501626d88660ea2dd4d0cb77cc2cbad (diff) | |
download | gsoc2013-evolution-8911460699f764a94975e85fb4bbff6d39d57dec.tar gsoc2013-evolution-8911460699f764a94975e85fb4bbff6d39d57dec.tar.gz gsoc2013-evolution-8911460699f764a94975e85fb4bbff6d39d57dec.tar.bz2 gsoc2013-evolution-8911460699f764a94975e85fb4bbff6d39d57dec.tar.lz gsoc2013-evolution-8911460699f764a94975e85fb4bbff6d39d57dec.tar.xz gsoc2013-evolution-8911460699f764a94975e85fb4bbff6d39d57dec.tar.zst gsoc2013-evolution-8911460699f764a94975e85fb4bbff6d39d57dec.zip |
Set CLEANFILES directly instead of using `+='.
* gui/component/select-names/Makefile.am: Set CLEANFILES directly
instead of using `+='.
* 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=12840
-rw-r--r-- | addressbook/ChangeLog | 3 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/Makefile.am | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 9b394de644..fd6cc7f0b3 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -3,6 +3,9 @@ [Automake 1.5 fixes pointed out by Richard Boulton <richard@tartarus.org>, as per #9258.] + * gui/component/select-names/Makefile.am: Set CLEANFILES directly + instead of using `+='. + * backend/pas/Makefile.am: Rename `LDAP_BACKEND_SOURCES' to `LDAP_BACKEND_FILES'. diff --git a/addressbook/gui/component/select-names/Makefile.am b/addressbook/gui/component/select-names/Makefile.am index 5c7b37794b..6c3ed1674e 100644 --- a/addressbook/gui/component/select-names/Makefile.am +++ b/addressbook/gui/component/select-names/Makefile.am @@ -79,7 +79,7 @@ EXTRA_DIST = \ $(IDLS) BUILT_SOURCES = $(IDL_GENERATED) -CLEANFILES += $(BUILT_SOURCES) +CLEANFILES = $(BUILT_SOURCES) dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) |