debian: place build utilities in a single file

This commit is contained in:
Travis Cross 2012-05-05 20:23:53 +00:00
parent 4ce0f57a8b
commit b281e1340b
2 changed files with 6 additions and 2 deletions

2
debian/rules vendored
View File

@ -78,7 +78,7 @@ override_dh_auto_test:
override_dh_strip:
dh_strip -a -k
./debian/create-dbg-pkgs.sh
./debian/util.sh create-dbg-pkgs
override_dh_auto_install:
dh_auto_install

View File

@ -13,5 +13,9 @@ create_dbg_pkgs () {
done
}
create_dbg_pkgs
cmd="$1"
shift
case "$cmd" in
create-dbg-pkgs) create_dbg_pkgs ;;
esac