1
0
mirror of https://github.com/ceph/ceph synced 2025-01-18 00:43:38 +00:00
ceph/debian/move_dbg_files.sh
2009-10-28 13:16:34 -07:00

9 lines
219 B
Bash
Executable File

#!/bin/sh
for f in ceph ceph-fuse libcrush1 librados1 libceph1 radosgw
do
echo moving $f unstripped binaries into $f-dbg
mkdir -p debian/$f-dbg/usr/lib
mv debian/$f/usr/lib/debug debian/$f-dbg/usr/lib
done