diff options
author | Rodney Dawes <dobey@ximian.com> | 2003-04-30 04:24:24 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2003-04-30 04:24:24 +0800 |
commit | 389f77ff440114e8c7731a2a8ac61f9998271184 (patch) | |
tree | 3efab8cf36c82d007f93609f61e1d0e91e231951 | |
parent | 996827b8fc5d460f6859ebb2b3617c72ce0e1c87 (diff) | |
download | gsoc2013-evolution-389f77ff440114e8c7731a2a8ac61f9998271184.tar gsoc2013-evolution-389f77ff440114e8c7731a2a8ac61f9998271184.tar.gz gsoc2013-evolution-389f77ff440114e8c7731a2a8ac61f9998271184.tar.bz2 gsoc2013-evolution-389f77ff440114e8c7731a2a8ac61f9998271184.tar.lz gsoc2013-evolution-389f77ff440114e8c7731a2a8ac61f9998271184.tar.xz gsoc2013-evolution-389f77ff440114e8c7731a2a8ac61f9998271184.tar.zst gsoc2013-evolution-389f77ff440114e8c7731a2a8ac61f9998271184.zip |
Fix install of evolution
2003-04-29 Rodney Dawes <dobey@ximian.com>
* Makefile.am: Fix install of evolution
svn path=/trunk/; revision=21021
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/Makefile.am | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 4eb210ce89..1198ebfcf6 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2003-04-29 Rodney Dawes <dobey@ximian.com> + + * Makefile.am: Fix install of evolution + 2003-04-28 Not Zed <NotZed@Ximian.com> [#41013] diff --git a/shell/Makefile.am b/shell/Makefile.am index d9b4a669ba..9ec1771914 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -316,12 +316,13 @@ install-data-local: fi install-evolution: + $(mkinstalldirs) $(DESTDIR)$(bindir) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) evolution $(DESTDIR)$(bindir)/evolution-$(BASE_VERSION) if HAVE_DTAPPINTEGRATE install-exec-local: install-evolution - mkdir -p $(DESTDIR)$(libexecdir) + $(mkinstalldirs) $(DESTDIR)$(libexecdir) mv $(DESTDIR)$(bindir)/evolution-$(BASE_VERSION) $(DESTDIR)$(libexecdir)/evolution-$(BASE_VERSION) $(INSTALL_PROGRAM) evolution-nognome $(DESTDIR)$(bindir)/evolution-$(BASE_VERSION) |