Copy the gcc's stdlibs to solver even if not packaging them
[LibreOffice.git] / bin / create_bootstrap_links
bloba42f7b8038477014d2345792d6a0031cdd40c237
1 #!/usr/bin/env bash
3 BIN_DIR=$(dirname $0)
4 REPOS=$(cat ${BIN_DIR?}/repo-list)
5 cd ${BIN_DIR?}/..
6 BOOTSTRAP_DIR=$(pwd)
8 for repo in $REPOS ; do
9 for link in $(ls clone/${repo}) ; do
10 if [ ! -e "$link" ] ; then
11 echo "Creating missing link $link"
12 ln -s "clone/${repo}/$link" "$link"
14 done
15 done