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
Copy the gcc's stdlibs to solver even if not packaging them
[LibreOffice.git]
/
bin
/
create_bootstrap_links
blob
a42f7b8038477014d2345792d6a0031cdd40c237
1
#!/usr/bin/env bash
2
3
BIN_DIR
=
$
(
dirname
$0
)
4
REPOS
=
$
(
cat
${BIN_DIR?}
/
repo-list
)
5
cd
${BIN_DIR?}
/
..
6
BOOTSTRAP_DIR
=
$
(
pwd
)
7
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
"
13
fi
14
done
15
done