From dbdcfc69b1d9d4bec00767c9d928c517ce58de57 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 25 Dec 2016 16:13:14 +0200 Subject: 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. --- icklib/cleanly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'] -- cgit v1.2.1