blob: 58d4f0c0ffa9db0043063310b59d7fe527a3a061 (
plain)
1
2
3
4
5
6
7
|
#!/bin/dash
# Rebase the dlls installed by NumPy
py_ver=${1}
numpy_dlls="`/bin/dash tools/list_numpy_dlls.sh ${py_ver}`"
/usr/bin/rebase --verbose --database --oblivious ${numpy_dlls}
/usr/bin/rebase --verbose --info ${numpy_dlls}
|