aboutsummaryrefslogtreecommitdiff
path: root/debuild-pbuilder
blob: 64b58a00ec9718952632d90c59db8421c0ef4db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
set -e

while ! test -d ./debian -o "$(pwd)" = "/" ; do
    cd ..;
done

if test ! -d ./debian; then
    echo "Cannot find ./debian dir"
    exit 1
fi;

. /usr/lib/pbuilder/pbuilder-loadconfig
"$PBUILDERROOTCMD" "$PBUILDERSATISFYDEPENDSCMD"
/usr/bin/debuild "$@"