diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-09-15 07:25:39 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-09-15 07:25:39 +0800 |
commit | 0963da8f8d447ae1cb1c89892cdf958fb847275e (patch) | |
tree | 09c04733d1812f056b1889b30cf4f058064983c5 /calendar/cal-client | |
parent | 8911460699f764a94975e85fb4bbff6d39d57dec (diff) | |
download | gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.gz gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.bz2 gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.lz gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.xz gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.tar.zst gsoc2013-evolution-0963da8f8d447ae1cb1c89892cdf958fb847275e.zip |
[Automake 1.5 fixes pointed out by Richard Boulton
<richard@tartarus.org>, as per #9258.]
* cal-client/Makefile.am: Set CLEANFILES directly instead of using
`+='.
svn path=/trunk/; revision=12841
Diffstat (limited to 'calendar/cal-client')
-rw-r--r-- | calendar/cal-client/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/cal-client/Makefile.am b/calendar/cal-client/Makefile.am index e7b32ca973..e910aa9610 100644 --- a/calendar/cal-client/Makefile.am +++ b/calendar/cal-client/Makefile.am @@ -83,7 +83,7 @@ client_test_LDADD = \ libcal-client.la BUILT_SOURCES = $(CORBA_GENERATED) -CLEANFILES += $(BUILT_SOURCES) +CLEANFILES = $(BUILT_SOURCES) dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) |