diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-06-02 23:27:12 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-06-02 23:27:12 +0800 |
commit | 1e93138b5499318ba0c7ebd4a8cebe63955ec42f (patch) | |
tree | 22a435abd85a402cb74404cc20a5f6e271b8ab06 | |
parent | 013f5badcb8f6144ddb17905a836fad5e52e0fd7 (diff) | |
download | gsoc2013-evolution-1e93138b5499318ba0c7ebd4a8cebe63955ec42f.tar gsoc2013-evolution-1e93138b5499318ba0c7ebd4a8cebe63955ec42f.tar.gz gsoc2013-evolution-1e93138b5499318ba0c7ebd4a8cebe63955ec42f.tar.bz2 gsoc2013-evolution-1e93138b5499318ba0c7ebd4a8cebe63955ec42f.tar.lz gsoc2013-evolution-1e93138b5499318ba0c7ebd4a8cebe63955ec42f.tar.xz gsoc2013-evolution-1e93138b5499318ba0c7ebd4a8cebe63955ec42f.tar.zst gsoc2013-evolution-1e93138b5499318ba0c7ebd4a8cebe63955ec42f.zip |
(install-data-local) [DEFAULT_BINARY]: Symlink
evolution.png to evolution-$(BASE_VERSION).png. [#43596]
svn path=/trunk/; revision=21367
-rw-r--r-- | art/ChangeLog | 5 | ||||
-rw-r--r-- | art/Makefile.am | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/art/ChangeLog b/art/ChangeLog index 8040b9d6b5..9dec5cedc8 100644 --- a/art/ChangeLog +++ b/art/ChangeLog @@ -1,3 +1,8 @@ +2003-06-02 Ettore Perazzoli <ettore@ximian.com> + + * Makefile.am (install-data-local) [DEFAULT_BINARY]: Symlink + evolution.png to evolution-$(BASE_VERSION).png. [#43596] + 2003-05-27 Jakub Steiner <jimmac@ximian.com> * about-box.png, splash.png: Update copyright info diff --git a/art/Makefile.am b/art/Makefile.am index 2c90e98397..1409d509c8 100644 --- a/art/Makefile.am +++ b/art/Makefile.am @@ -222,8 +222,11 @@ conduits_DATA = \ evo-48-todo-conduit.png install-data-local: - $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps; \ + $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps $(INSTALL_DATA) $(srcdir)/evolution.png $(DESTDIR)$(datadir)/pixmaps/evolution-$(BASE_VERSION).png +if DEFAULT_BINARY + cd $(DESTDIR)$(datadir)/pixmaps && rm -f evolution.png && $(LN_S) evolution-$(BASE_VERSION).png evolution.png +endif EXTRA_DIST = \ attachment.xpm \ |