From: Michael Tremer Date: Sun, 28 Aug 2011 16:00:42 +0000 (+0200) Subject: Fix for packaging packages in wrong order. X-Git-Tag: 0.9.9~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=afe4e55cd12fdecbbb0ebc3c454fcb5772ba9681;p=pakfire.git Fix for packaging packages in wrong order. --- diff --git a/pakfire/packages/make.py b/pakfire/packages/make.py index 7163d9f16..813ae4f3e 100644 --- a/pakfire/packages/make.py +++ b/pakfire/packages/make.py @@ -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):