summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/reprepro-rebuilder7
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/reprepro-rebuilder b/bin/reprepro-rebuilder
index 50aaf38e..1b29aff0 100755
--- a/bin/reprepro-rebuilder
+++ b/bin/reprepro-rebuilder
@@ -181,14 +181,11 @@ sub build {
@arch_needed = array_minus @arch_needed, @all_needed;
my $build_debs = sub {
- my @args = ("-d", $dist);
+ my @args = ("--no-run-lintian", "-d", $dist);
shift and push @args, "-A";
for (@_) {
my $basename = basename $_;
- {
- no autodie;
- system "sbuild", "--no-run-lintian", @args, $basename
- }
+ { no autodie; system "sbuild", @args, $basename }
$? == 0
? push(@succeeded, $basename)
: push(@failed, $basename);