blob: 1b2d6f04ad40d49ca573e85a4fb5d392884708be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#! /bin/bash
# this is sourced from pbuilder packages to process the optional parameters.
. /etc/pbuilderrc
. /usr/lib/pbuilder/pbuilder-modules
# the default is to add a PID in the buildplace specified in the config file.
BASEBUILDPLACE="$BUILDPLACE"
BUILDPLACE="$BUILDPLACE/$$"
while [ -n "$1" ]; do
case "$1" in
--basetgz)
BASETGZ=$(readlink -f "$2");
shift; shift;
;;
--buildplace)
BUILDPLACE=$(readlink -f "$2");
shift; shift;
;;
--mirror)
MIRRORSITE="$2";
shift; shift;
;;
--nonusmirror)
NONUSMIRRORSITE="$2";
shift; shift;
;;
--othermirror)
OTHERMIRROR="$3";
shift; shift;
;;
--http-proxy)
export http_proxy="$2";
shift; shift;
;;
--distribution)
DISTRIBUTION="$2";
shift; shift;
;;
--buildresult)
BUILDRESULT=$(readlink -f "$2");
shift; shift;
;;
--removepackages)
REMOVEPACKAGES="$2";
shift; shift;
;;
--help)
showhelp
;;
--*)
echo "Error: Unknown option [$1] was specified " >&2
exit 1;
;;
*)
break;
;;
esac
done
|