From ee3d670b0d1181b07ff92d7810551043dd4c6c2a Mon Sep 17 00:00:00 2001 From: Kurt Roeckx Date: Sat, 12 Dec 2009 22:30:40 +0000 Subject: [PATCH] Don't go to state BD-Uninstallable for arches other than unstable. --- bin/wanna-build | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/bin/wanna-build b/bin/wanna-build index 8e20556..fda7b55 100755 --- a/bin/wanna-build +++ b/bin/wanna-build @@ -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; -- 2.39.2