repo.or.cz
/
nacl-build.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix build on karmic: Work around Python/tar bug
[nacl-build.git]
/
clean-glibc-libs
blob
497d0f3be5c416917945036c65adce65329c0603
1
#!/bin/bash
2
3
# Remove libraries from glibc build tree to force them to be re-linked,
4
# e.g. when linker scripts are changed, because the dependency on linker
5
# scripts is not tracked.
6
7
find
glibc
/
build
-name
"*.so"
-exec
rm
-v
'{}'
';'