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
Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git]
/
solenv
/
bin
/
write_classpath.sh
blob
4b9fd6bcbbf438564c4f246e95bc47939815f4ea
1
#!/usr/bin/env bash
2
3
dest
=
"
$1
"
4
shift
5
base
=
'Class-Path: '
6
7
while
[
"
${1}
"
!=
""
];
do
8
p
=
"
$1
"
9
shift
10
echo
"
$base
$p
"
>>
$dest
11
base
=
' '
12
done
13
14
#echo "added classpath"
15
#cat $dest
16
#echo "==="