#! /bin/bash # # 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/. # # Usage: update_pch.sh [/inc/pch/precompiled_xxx.hxx] # Usage: update_pch.sh [] # Invoke: make cmd cmd="./bin/update_pch.sh [..]" root=`dirname $0` root=`cd $root/.. && pwd` cd $root if test -z "$1"; then headers=`ls ./*/inc/pch/precompiled_*.hxx` else headers="$@" fi # Split the headers into an array. IFS=' ' read -a aheaders <<< $headers hlen=${#aheaders[@]}; if [ $hlen -gt 1 ]; then if [ -z "$PARALLELISM" ]; then PARALLELISM=0 # Let xargs decide fi echo $headers | xargs -n 1 -P $PARALLELISM $0 exit $? fi for x in $headers; do if [ -d "$x" ]; then # We got a directory, find pch files to update. headers=`find $root/$x/ -type f -iname "precompiled_*.hxx"` $0 "$headers" else header=$x echo updating `echo $header | sed -e s%$root/%%` module=`readlink -f $header | sed -e s%$root/%% -e s%/.*%%` libname=`echo $header | sed -e s/.*precompiled_// -e s/\.hxx//` ./bin/update_pch "$module" "$libname" fi done #echo Done. exit 0 5-2'>distro/cib/libreoffice-5-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/odk
AgeCommit message (Expand)Author
2020-05-06Move all public Java classes to libreoffice.jarSamuel Mehrbrodt
2020-04-23make spinbutton demo wide enough to useCaolán McNamara
2020-02-24Fix typoAndrea Gelmini
2020-02-16GBUILD_TRACE, support for finding out where the build time is spentLuboš Luňák
2020-02-10Cleanup: Move files to ridljarSamuel Mehrbrodt
2020-02-04tdf#117331 Merge jurt and unoil into ridlSamuel Mehrbrodt
2020-01-28Remove misleading commentStephan Bergmann
2020-01-17odk: docs: remove the confusing sentence about "user installation"Michael Stahl
2020-01-06Avoid $(shell $(gb_MKTEMP))Stephan Bergmann
2020-01-06Fix MACOSX_SHELL_HACKStephan Bergmann
2020-01-02Bump copyright year to 2020Adolfo Jayme Barrientos
2019-12-19sal_Char->char in lotuswordpro..odkNoel Grandin
2019-12-18Fix typoAndrea Gelmini
2019-12-18Fix instructions for setting up the SDKStephan Bergmann
2019-12-17Cosmetic documentation fixesStephan Bergmann
2019-12-05Fix typoAndrea Gelmini
2019-11-19loplugin:fakebool (clang-cl)Stephan Bergmann
2019-11-17cid#706181 Use of untrusted string valueCaolán McNamara
2019-11-01odk: fix for change directory in complextoolbarcontrols sampleVasily Melenchuk
2019-10-23ODK: cleanup windows linker debug argsThorsten Behrens
2019-10-19Fix typo and dotsAndrea Gelmini
2019-10-12rtl/stringconcat.hxx is not part of the URE interfaceStephan Bergmann
2019-10-11simplify "a = a +" to "a +="Noel Grandin
2019-10-09Make odk build-examples work on macOS 10.15Stephan Bergmann
2019-09-10Fix typosAndrea Gelmini
2019-09-06Fixing '....' and '..'Andrea Gelmini
2019-09-01Fix '..'Andrea Gelmini
2019-08-29Fix typoAndrea Gelmini
2019-08-21odk: fixed typos in generated manifestsVasily Melenchuk
2019-08-20Fix EXTENSION_PLATFORM for Windows x86_64Stephan Bergmann
2019-08-19Fix typosAndrea Gelmini
2019-08-19Fix typosAndrea Gelmini
2019-08-16Fix typosAndrea Gelmini
2019-08-12Fix typosAndrea Gelmini
2019-08-12Fix typoAndrea Gelmini
2019-08-12Fix typosAndrea Gelmini
2019-08-11Fixed "OfficeDocument"Matthias Seidel
2019-08-09Fix typosAndrea Gelmini