~mathiaz/+junk/ceph-new-pkg-review

« back to all changes in this revision

Viewing changes to debian/move_dbg_files.sh

  • Committer: Mathias Gug
  • Date: 2010-07-29 03:10:42 UTC
  • Revision ID: mathias.gug@canonical.com-20100729031042-n9n8kky962qb4onb
Import ceph_0.21-0ubuntu1 from https://launchpad.net/~clint-fewbar/+archive/ceph/+packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
for f in ceph ceph-fuse libcrush1 librados1 libceph1 radosgw
 
4
do
 
5
    echo moving $f unstripped binaries into $f-dbg
 
6
    mkdir -p debian/$f-dbg/usr/lib
 
7
    mv debian/$f/usr/lib/debug debian/$f-dbg/usr/lib
 
8
done