/usr/bin/debuild-pbuilder is in pbuilder 0.215+nmu3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 "E: Cannot find ./debian dir" >&2
exit 1
fi;
. /usr/lib/pbuilder/pbuilder-loadconfig
$PBUILDERROOTCMD "$PBUILDERSATISFYDEPENDSCMD"
/usr/bin/debuild "$@"
|