]> git.decadent.org.uk Git - dak.git/commitdiff
generate-d-i: Only look at architectures in testing.
authorAnsgar Burchardt <ansgar@debian.org>
Sat, 4 Apr 2015 10:50:16 +0000 (12:50 +0200)
committerAnsgar Burchardt <ansgar@debian.org>
Sat, 4 Apr 2015 10:50:16 +0000 (12:50 +0200)
scripts/debian/generate-d-i

index 5d6bca78f5333ddceb1c5e844a9abc8db42c2559..391e830860b51053f79d22fe8b45c44cb58c455b 100755 (executable)
@@ -44,7 +44,7 @@ psql -c "
     AND NOT EXISTS (SELECT 1 FROM bin_associations ba2 WHERE ba2.suite = ${testing_id} AND ba2.bin = ba.bin)
     AND s.id IN (SELECT source from src_associations WHERE suite = ${testing_id})
     AND b.type = 'udeb'
-    AND b.architecture NOT IN (4,8,12)
+    AND b.architecture IN (SELECT architecture FROM suite_architectures WHERE suite = ${testing_id})
   ORDER BY s.source, b.package, b.architecture;
   "
 
@@ -62,6 +62,6 @@ psql -c "
     AND NOT EXISTS (SELECT 1 FROM bin_associations ba2 WHERE ba2.suite = ${testing_id} AND ba2.bin = ba.bin)
     AND s.id IN (SELECT source from src_associations WHERE suite = ${testing_id})
     AND b.type = 'udeb'
-    AND b.architecture NOT IN (4,8,12)
+    AND b.architecture IN (SELECT architecture FROM suite_architectures WHERE suite = ${testing_id})
   ORDER BY s.source, b.package, b.architecture;
   "