summaryrefslogtreecommitdiff
ModeNameSize
d---------.git-hooks148logplain
-rw-r--r--.gitignore177logplain
-rw-r--r--.gitreview92logplain
-rw-r--r--AllLangHelp_sbasic.mk21438logplain
-rw-r--r--AllLangHelp_scalc.mk21761logplain
-rw-r--r--AllLangHelp_schart.mk3497logplain
-rw-r--r--AllLangHelp_sdatabase.mk1025logplain
-rw-r--r--AllLangHelp_sdraw.mk3054logplain
-rw-r--r--AllLangHelp_shared.mk49868logplain
-rw-r--r--AllLangHelp_simpress.mk11106logplain
-rw-r--r--AllLangHelp_smath.mk4516logplain
-rw-r--r--AllLangHelp_swriter.mk22477logplain
-rw-r--r--AllLangPackage_html_lang.mk1104logplain
-rw-r--r--AllLangPackage_html_media_lang.mk13542logplain
-rw-r--r--CustomTarget_html.mk15286logplain
-rw-r--r--CustomTarget_imagelist.mk1759logplain
-rw-r--r--GeneratedPackage_html_icon-themes.mk694logplain
-rw-r--r--GeneratedPackage_html_lang_generated.mk834logplain
-rw-r--r--Makefile225logplain
-rw-r--r--Module_helpcontent2.mk1141logplain
-rw-r--r--Package_helpimages.mk602logplain
-rw-r--r--Package_html_dynamic.mk748logplain
-rw-r--r--Package_html_media.mk16972logplain
-rw-r--r--Package_html_static.mk1031logplain
-rw-r--r--README.md436logplain
-rwxr-xr-xhelp-to-wiki.py3070logplain
d---------help3xsl892logplain
d---------helpers615logplain
d---------source99logplain
d---------to-wiki83logplain
-rwxr-xr-xupload-wiki.pl6134logplain
on> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/solenv/gbuild/Dictionary.mk
AgeCommit message (Collapse)Author
2022-12-13gb_var2file: remove now unused chunk-size parameterChristian Lohmaier
that parameter did specify how many entries of the list the workaround method could use to not exceed commandline length limits, so it was a guess of sorts and many places didn't actually bother with tweaking that value anyway and just used 100. the $(file …) function doesn't care about that, so the parameter was always ignored in that case. Change-Id: If89ec3a1968be297c0fe7c65336c5a965598f0c9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143911 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
2021-11-04Resolves: tdf#97046 ensure build system variables start with gb_Sabyasachi Bhoi
Change the variable name: var2file to gb_var2file Change-Id: Ib7d64b76cfe10e6c2df1a176674a360b28704070 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124666 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2020-02-16GBUILD_TRACE, support for finding out where the build time is spentLuboš Luňák
See instructions in solenv/gbuild/Trace.mk . This generates a file than can be viewed e.g. in the Chromium tracing view. Change-Id: I5f90647c58ca729375525b6daed2d4918adc8188 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88754 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2019-12-16Revert "Make font-based unit test depend on instdir fonts"Jan-Marek Glogowski
The following build: $ make clean && make gb_CppunitTest_sc_ucalc [...] $ cd sc $ make gb_CppunitTest_sc_ucalc triggers: sc/CppunitTest_sc_subsequent_filters_test.mk:133: *** Missing font filelist -> run make more_fonts extras. This didn't help the general Win32 font build problem AFAIK. There were additional patches to the way Windows loads the LO provided fonts, so just revert this. This reverts commit 368c996b24e09c427a30972b3405493328db6779. Change-Id: I841f96fe8312c47980c8e3be2e9d88242df5b28d Reviewed-on: https://gerrit.libreoffice.org/84633 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-07-05Make font-based unit test depend on instdir fontsJan-Marek Glogowski
The current dependency is already a hack, because there is no way I know of to depend on delivered top-level modules like more_fonts. The original patch parses the gb_Package_MODULE_ooo_fonts list of registered packages to add them as build dependencies. But this is not sufficient, as it just adds the dependencies on the installed / unpacked fonts in the workdir (actually it's just the installer filelist), where they can't be found by the unit test running in the instdir environment. So this converts the depndency into a make error, if either the filelist is missing or the included font files. But if we are in a full run and know the more_fonts module, we simply depend on its delivered files. This needs some minimal changes to gbuild, as neither the delivered file list nor the modules class names are yet available. And this moves the fontconfig handling to extras, where the opensymbol font is already handled. Change-Id: I1b70a4c45ff189266ce56c57e534ddc45e7c5c19 Reviewed-on: https://gerrit.libreoffice.org/74624 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
2019-04-18Don't set LANG env var by accidentStephan Bergmann
...as setting a GNU Make LANG var exports it to recipes as an env var, and see e.g. 56bc0b1a376f62570a7287e9bb4193e00360c978 "Don't set locale env vars on macOS" for potential problems caused by that. This is the core half of a change spanning the core and help repos. Change-Id: Ib7ae3b6edcef0b70e211a01aad4b3bd5c8905e06 Reviewed-on: https://gerrit.libreoffice.org/70929 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>