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