aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-checkparams
diff options
context:
space:
mode:
authordancer <dancer>2001-11-02 16:07:34 +0000
committerdancer <dancer>2001-11-02 16:07:34 +0000
commit9743104c84ea0b4c9ff49d6ab2851588db3e9c29 (patch)
tree1d43f0a22663840dc2328ec8aac3169184a9d084 /pbuilder-checkparams
parent6e988a16a99af94f0dfbb486c9712e02c90c99c7 (diff)
downloadpbuilder-9743104c84ea0b4c9ff49d6ab2851588db3e9c29.tar
pbuilder-9743104c84ea0b4c9ff49d6ab2851588db3e9c29.tar.gz
things are re-implemented with DEBEMAIL in mind. Always call dpkg-buildpackage with -m
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-xpbuilder-checkparams10
1 files changed, 6 insertions, 4 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams
index 08de056..6429568 100755
--- a/pbuilder-checkparams
+++ b/pbuilder-checkparams
@@ -61,13 +61,12 @@ while [ -n "$1" ]; do
HOOKDIR="$2";
shift; shift;
;;
+ --debemail)
+ DEBEMAIL="$2";
+ shift; shift;
--help)
showhelp
;;
- --sponsorship)
- DPKG_BUILDPACKAGEOPT="-m$SPONSORING_MAILADDR";
- shift;
- ;;
--*)
echo "Error: Unknown option [$1] was specified " >&2
exit 1;
@@ -79,3 +78,6 @@ while [ -n "$1" ]; do
done
BUILDPLACE=${BUILDPLACE?"Build root directory is not defined"}
+if [ -z "$DEBEMAIL" ]; then
+ DEBEMAIL="nobody@nowhere"
+fi