]> git.ipfire.org Git - pakfire.git/commitdiff
Fix for packaging packages in wrong order.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 28 Aug 2011 16:00:42 +0000 (18:00 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 28 Aug 2011 16:00:42 +0000 (18:00 +0200)
pakfire/packages/make.py

index 7163d9f16f6a325fcb6a8b16c89efde8918a77c5..813ae4f3eafa0cd81558688e0749f966b24b3b03 100644 (file)
@@ -215,7 +215,7 @@ class Makefile(MakefileBase):
                        pkg = MakefilePackage(self.pakfire, name, lexer)
                        pkgs.append(pkg)
 
-               return sorted(pkgs)
+               return pkgs
 
        @property
        def source_dl(self):