summaryrefslogtreecommitdiff
path: root/buildmaster/mysql-issues.php
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-04-20 11:11:14 +0200
committerErich Eckner <git@eckner.net>2018-04-20 11:11:14 +0200
commit9e5f7e2a1a624af8e276394e675c8a5a674fade6 (patch)
treecbd8a303cd89aea74d2b757b6fe2850d04ac152d /buildmaster/mysql-issues.php
parentb84ee39568912e7e4d368582697b68f7c8a22b23 (diff)
downloadarchweb32-9e5f7e2a1a624af8e276394e675c8a5a674fade6.tar.xz
buildmaster/mysql-issues.php: order by install target, too
Diffstat (limited to 'buildmaster/mysql-issues.php')
-rw-r--r--buildmaster/mysql-issues.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildmaster/mysql-issues.php b/buildmaster/mysql-issues.php
index 72e3558..12bf206 100644
--- a/buildmaster/mysql-issues.php
+++ b/buildmaster/mysql-issues.php
@@ -45,7 +45,7 @@
" WHERE `install_target_providers`.`install_target` = `dependencies`.`depending_on`" .
")" .
$ignore .
- " ORDER BY `is_to_be_deleted`, `binary_packages`.`pkgname`"
+ " ORDER BY `is_to_be_deleted`,`binary_packages`.`pkgname`,`install_targets`.`name`"
);
$serious_issues = array();
@@ -86,7 +86,7 @@
" AND `repositories`.`stability`=`repository_stability_relations`.`less_stable`" .
")" .
$ignore .
- " ORDER BY `is_to_be_deleted`, `binary_packages`.`pkgname`"
+ " ORDER BY `is_to_be_deleted`,`binary_packages`.`pkgname`,`install_targets`.`name`"
);
$stability_issues = array();