mirror of
https://github.com/ceph/ceph
synced 2024-12-15 07:56:12 +00:00
9 lines
219 B
Bash
Executable File
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
|