diff options
Diffstat (limited to 'art')
-rw-r--r-- | art/ChangeLog | 7 | ||||
-rw-r--r-- | art/Makefile.am | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/art/ChangeLog b/art/ChangeLog index 7fafe12293..f56c7de0c1 100644 --- a/art/ChangeLog +++ b/art/ChangeLog @@ -1,3 +1,10 @@ +2006-09-19 Matthew Barnes <mbarnes@redhat.com> + + Fixes bug #356811 + + * Makefile.am: Add a uninstall-local rule to remove + $(DESTDIR)$(datadir)/pixmaps/evolution-$(BASE_VERSION).png. + 2006-05-25 Srinivasa Ragavan <sragavan@novell.com> ** Added new icons to evolution. diff --git a/art/Makefile.am b/art/Makefile.am index 3222adac1d..08d8048520 100644 --- a/art/Makefile.am +++ b/art/Makefile.am @@ -17,6 +17,9 @@ if DEFAULT_BINARY cd $(DESTDIR)$(datadir)/pixmaps && rm -f evolution.png && $(LN_S) evolution-$(BASE_VERSION).png evolution.png endif +uninstall-local: + rm -f $(DESTDIR)$(datadir)/pixmaps/evolution-$(BASE_VERSION).png + EXTRA_DIST = \ ChangeLog \ ChangeLog.pre-1-4 \ |