forked from Mirrors/freeswitch
18 lines
441 B
Bash
18 lines
441 B
Bash
|
#!/bin/bash
|
||
|
##### -*- mode:shell-script; indent-tabs-mode:nil; sh-basic-offset:2 -*-
|
||
|
##### Author: Travis Cross <tc@traviscross.com>
|
||
|
|
||
|
create_dbg_pkgs () {
|
||
|
for x in debian/*; do
|
||
|
test ! -d $x && continue
|
||
|
test "$x" = "tmp" -o "$x" = "source" && continue
|
||
|
test ! "$x" = "${x%-dbg}" && continue
|
||
|
test ! -d $x/usr/lib/debug && continue
|
||
|
mkdir -p $x-dbg/usr/lib
|
||
|
mv $x/usr/lib/debug $x-dbg/usr/lib/
|
||
|
done
|
||
|
}
|
||
|
|
||
|
create_dbg_pkgs
|
||
|
|