5c4ca57923
This reverts commit795c61e052
. <sberg_> but what is795c61e052
supposed to help anyway? on all platforms, gengal should already get URE_BOOTSTRAP set, either via redirectrc, or via extendApplicationEnvironment() <mst_> sberg_: so ... you mean that gengal.rc is actually unnecessary, and that the problem was caused by a missing dep on Package_instsetoo_native_setup ? <sberg_> I'm pretty sure a missing gengal ini-file was a red herring Change-Id: I50ebc360e0e5c75c16f8407cbac6a54753fca272 Reviewed-on: https://gerrit.libreoffice.org/20226 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
23 lines
910 B
Makefile
23 lines
910 B
Makefile
# -*- 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,instsetoo_native_setup,$(call gb_CustomTarget_get_workdir,instsetoo_native/setup)))
|
|
|
|
$(eval $(call gb_Package_add_files,instsetoo_native_setup,$(LIBO_ETC_FOLDER),\
|
|
$(call gb_Helper_get_rcfile,bootstrap) \
|
|
$(call gb_Helper_get_rcfile,fundamental) \
|
|
$(if $(filter DESKTOP,$(BUILD_TYPE)),$(if $(filter-out MACOSX,$(OS)), \
|
|
$(call gb_Helper_get_rcfile,redirect))) \
|
|
$(call gb_Helper_get_rcfile,setup) \
|
|
$(call gb_Helper_get_rcfile,soffice) \
|
|
$(call gb_Helper_get_rcfile,louno) \
|
|
$(call gb_Helper_get_rcfile,version) \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|