summaryrefslogtreecommitdiff
path: root/config_host.mk.source
blob: 10dd6177b035de3e084fbee5d5b8439c55f09d50 (plain)
1
2
3
4
5
6
7
8
9
10
# this script allows to correctly source config_host.mk into existing shell
#
# Usage:
#
#       source ./config_host.mk.source

temp_conf=`mktemp config_host.mk.XXXXXX`
sed -e 's/^\s*\(export [A-Z0-9_]*=\)\(.*\)$/\1"\2"/' config_host.mk >$temp_conf
source ./$temp_conf
rm $temp_conf
001396ac6fdf2'>Simplify containers iterations in ucb, ucbhelperArkadiy Illarionov 2018-08-02Add missing sal/log.hxx headersGabor Kelemen 2018-05-17loplugin:unusedfields in tools..xmlhelpNoel Grandin 2017-01-26Remove dynamic exception specificationsStephan Bergmann 2016-12-14Merge shell into TaskManager base classStephan Bergmann 2016-06-23remove some more (void) style function definitions/declarationsNoel Grandin 2016-02-09Remove excess newlinesChris Sherlock 2015-12-21loplugin:unusedfields UnoControls,ucbNoel Grandin 2014-05-23remove boilerplate in UNO Exception constructor callsNoel Grandin 2014-05-22remove unnecessary use of OUString constructorNoel Grandin 2014-03-08de-macroize ucb filprpNorbert Thiebaud 2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann 2014-01-27Don't use OSL_LOG_PREFIX when throwing exceptions in non-debug builds.Jan Holesovsky