diff options
author | Adrien Cunin <adri2000@ubuntu.com> | 2007-10-22 08:28:02 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@dancer64.netfort.gr.jp> | 2007-10-22 08:28:02 +0900 |
commit | a6996a19f78e81fe000bb87f9911311c5d76be9b (patch) | |
tree | 6150e866e710d8fae26a431257613bc098019f87 /pbuilder-checkparams | |
parent | f6f2a0cc64cf6756e1b3d7ba880a7debe3d028a4 (diff) | |
download | pbuilder-a6996a19f78e81fe000bb87f9911311c5d76be9b.tar pbuilder-a6996a19f78e81fe000bb87f9911311c5d76be9b.tar.gz |
[Pbuilder-maint] Bug#422371: Patch for specifying components
Here is a patch against latest git revision which adds the ability to specify
the components either via $COMPONENTS in pbuilderrc or via the command line with
--components.
It is based on some of the Ubuntu changes [1].
[1] http://patches.ubuntu.com/p/pbuilder/pbuilder_0.170ubuntu1.patch
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-x | pbuilder-checkparams | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 89cda72..34b4a42 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -75,6 +75,10 @@ while [ -n "$1" ]; do DISTRIBUTION="$2"; shift; shift; ;; + --components) + COMPONENTS="$2"; + shift; shift; + ;; --buildresult) if [ -n "$2" ]; then if [ -d "$2" ]; then |