]> git.ipfire.org Git - pakfire.git/commitdiff
Fix using multiple domains for downloading source files.
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 6 Feb 2012 00:13:35 +0000 (19:13 -0500)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 6 Feb 2012 00:13:35 +0000 (19:13 -0500)
python/pakfire/packages/make.py

index ca64ed3d666878d4cb5f7c7cbb6758311295d588..d93c694c00f01e1c893ca0d5a4c06132d440cf82 100644 (file)
@@ -225,8 +225,7 @@ class Makefile(MakefileBase):
                if self.pakfire.distro.source_dl:
                        dls.append(self.pakfire.distro.source_dl)
 
-               dl = self.lexer.get_var("source_dl")
-               if dl:
+               for dl in self.lexer.get_var("source_dl").split():
                        dls.append(dl)
 
                return dls