repo.or.cz
/
LibreOffice.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bump for 3.6-28
[LibreOffice.git]
/
config_host.mk.source
blob
10dd6177b035de3e084fbee5d5b8439c55f09d50
1
# this script allows to correctly source config_host.mk into existing shell
2
#
3
# Usage:
4
#
5
# source ./config_host.mk.source
6
7
temp_conf=`mktemp config_host.mk.XXXXXX`
8
sed -e 's/^\s*\(export [A-Z0-9_]*=\)\(.*\)$/\1"\2"/' config_host.mk >$temp_conf
9
source ./$temp_conf
10
rm $temp_conf