]> git.donarmstrong.com Git - wannabuild.git/commitdiff
Don't go to state BD-Uninstallable for arches other than unstable.
authorKurt Roeckx <kurt@roeckx.be>
Sat, 12 Dec 2009 22:30:40 +0000 (22:30 +0000)
committerKurt Roeckx <kurt@roeckx.be>
Sat, 12 Dec 2009 22:30:40 +0000 (22:30 +0000)
bin/wanna-build

index 8e205569d88720368beb00e276e82a2b1e44d2c8..fda7b55fc67babc8f3ad42569872bd52c1258e02 100755 (executable)
@@ -1021,8 +1021,14 @@ sub set_one_binnmu {
                return;
        }
 
-       change_state( \$pkg, 'BD-Uninstallable' );
-       $pkg->{'bd_problem'} = "Installability of build dependencies not tested yet";
+       if ($distribution eq "unstable") {
+               change_state( \$pkg, 'BD-Uninstallable' );
+               $pkg->{'bd_problem'} = "Installability of build dependencies not tested yet";
+       }
+       else
+       {
+               change_state( \$pkg, 'Needs-Build' );
+       }
        delete $pkg->{'builder'};
        delete $pkg->{'depends'};
        $pkg->{'binary_nmu_version'} = $binNMUver;