File: moveall.sh

package info (click to toggle)
python-escript 5.6-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144,304 kB
  • sloc: python: 592,074; cpp: 136,909; ansic: 18,675; javascript: 9,411; xml: 3,384; sh: 738; makefile: 207
file content (10 lines) | stat: -rwxr-xr-x 236 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

# Rewrites dependencies on all libraries in /lib to use /lib versions 
# rather than /build versions

for name in `find lib esys -name '*.dylib' -o -name '*.so'`
do
   echo $name
   scripts/libmover.sh $name `pwd`/lib
done