2012-02-24 01:03:09 +00:00
|
|
|
#!/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
|
|
|
|
}
|
|
|
|
|
2012-05-05 20:23:53 +00:00
|
|
|
cmd="$1"
|
|
|
|
shift
|
|
|
|
case "$cmd" in
|
|
|
|
create-dbg-pkgs) create_dbg_pkgs ;;
|
|
|
|
esac
|
2012-02-24 01:03:09 +00:00
|
|
|
|