summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-12-25 16:13:14 +0200
committerLars Wirzenius <liw@liw.fi>2016-12-25 16:13:14 +0200
commitdbdcfc69b1d9d4bec00767c9d928c517ce58de57 (patch)
tree243f6bb6c8b726778005b955d9b09f9701be96c5
parent755e493a52acf0bbda299c97ba0ee98f79436f7b (diff)
downloadick-dbdcfc69b1d9d4bec00767c9d928c517ce58de57.tar.gz
Fix how --debbuildopts gives argument
The space meant the pbuilder parsed the --debbbuildopts arg as two arguments to give to dpkg-buildpackage. I'm lost in a layer cake of different command line parsing approaches.
-rwxr-xr-xicklib/cleanly2
1 files changed, 1 insertions, 1 deletions
diff --git a/icklib/cleanly b/icklib/cleanly
index 203f7ca..bef775d 100755
--- a/icklib/cleanly
+++ b/icklib/cleanly
@@ -316,7 +316,7 @@ class App(cliapp.Application):
opts = [
'--build',
'--buildresult', result,
- '--debbuildopts', '--check-options=-X bad-distribution-in-changes-file,changed-by-address-malformed',
+ '--debbuildopts', '--check-option=-Xbad-distribution-in-changes-file,changed-by-address-malformed',
]
if self.settings['build-arch-all-also']:
opts += ['--debbuildopts', '-b']