blob: 3cac82d186c6dcf67ff01d5eb26e38a90c14d082 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
[ -z "$LDD" ] && LDD=/usr/bin/ldd
[ -z "$GREP" ] && GREP=/bin/grep
LDD_EXP='/(.*).so(|.[[:digit:]]+)*'
if [ $# -ne 2 ]; then
echo "usage: $0 [binary] [destdir]" >&2
exit 1
else
BIN="${1}"
DEST="${2}"
fi
SO_FILES=$(${LDD} ${BIN} | ${GREP} -oE ${LDD_EXP})
[ -d ${DEST} ] || mkdir -p ${DEST}
for file in ${SO_FILES}; do
if [ ! -r ${file} ]; then
echo "$0: $file not readable."
continue
fi
libdir=$(dirname ${DEST}/${file})
mkdir -p ${libdir}
cp ${file} ${libdir}/
done
|