mirror of
https://github.com/ceph/ceph
synced 2025-02-14 22:37:51 +00:00
9 lines
237 B
Bash
Executable File
9 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in ceph ceph-fuse ceph-client-tools 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
|