diff options
-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) |