diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-11 10:22:29 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-11 10:22:50 +0200 |
commit | 7f53734365817203ba8c25f28bba573f247a97ee (patch) | |
tree | dfa7c246edfcf344256902ba1fc1b2e50ae20a87 /desktop | |
parent | 7c3bb56d60b5d33fc7da1cdef3a7f9f2aa956b12 (diff) |
Put Mac OS X program -> MacOS symlink into instdir
Change-Id: Ie3a9546afa4faf07e1f69a59347ff1e15f8a9cb6
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/Module_desktop.mk | 4 | ||||
-rw-r--r-- | desktop/Package_desktop_install.mk | 16 |
2 files changed, 20 insertions, 0 deletions
diff --git a/desktop/Module_desktop.mk b/desktop/Module_desktop.mk index 68acf4104f47..847f036f5049 100644 --- a/desktop/Module_desktop.mk +++ b/desktop/Module_desktop.mk @@ -95,6 +95,10 @@ $(eval $(call gb_Module_add_targets,desktop,\ else ifeq ($(OS),MACOSX) +$(eval $(call gb_Module_add_targets,desktop,\ + Package_desktop_install \ +)) + else ifeq ($(OS),ANDROID) else ifeq ($(OS),IOS) diff --git a/desktop/Package_desktop_install.mk b/desktop/Package_desktop_install.mk new file mode 100644 index 000000000000..6740f777f654 --- /dev/null +++ b/desktop/Package_desktop_install.mk @@ -0,0 +1,16 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Package_Package,desktop_install,$(SRCDIR))) + +$(eval $(call gb_Package_set_outdir,desktop_install,$(gb_INSTROOT))) + +$(eval $(call gb_Package_add_symbolic_link,desktop_install,program,MacOS)) + +# vim: set noet sw=4 ts=4: |