summaryrefslogtreecommitdiff
path: root/buildmaster/mysql-issues.php
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-05-15 09:46:44 +0200
committerErich Eckner <git@eckner.net>2018-05-15 09:46:54 +0200
commit946a143d4c0036bc22c99f4d02e55d50328422d2 (patch)
tree5eca8445c242d7e47f5c95a7c30fc6c8fc2e8436 /buildmaster/mysql-issues.php
parent8ac70b82acf74e409cfacdfd0c9c59ca0b0bc6e7 (diff)
downloadarchweb32-946a143d4c0036bc22c99f4d02e55d50328422d2.tar.xz
buildmaster/mysql-issues.php: order more rigid
Diffstat (limited to 'buildmaster/mysql-issues.php')
-rw-r--r--buildmaster/mysql-issues.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/buildmaster/mysql-issues.php b/buildmaster/mysql-issues.php
index 12bf206..7dde0f4 100644
--- a/buildmaster/mysql-issues.php
+++ b/buildmaster/mysql-issues.php
@@ -45,7 +45,11 @@
" WHERE `install_target_providers`.`install_target` = `dependencies`.`depending_on`" .
")" .
$ignore .
- " ORDER BY `is_to_be_deleted`,`binary_packages`.`pkgname`,`install_targets`.`name`"
+ " ORDER BY " .
+ "`binary_packages`.`is_to_be_deleted`," .
+ "`repositories`.`name`," .
+ "`binary_packages`.`pkgname`," .
+ "`install_targets`.`name`"
);
$serious_issues = array();