From: Michael Tremer Date: Fri, 30 Sep 2011 16:36:44 +0000 (+0200) Subject: Fix downloading source when creating source packages. X-Git-Tag: 0.9.10~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b33bcb024736158f6614e4207a691b13398842db;p=pakfire.git Fix downloading source when creating source packages. --- diff --git a/python/pakfire/packages/make.py b/python/pakfire/packages/make.py index 80bb12aa7..c81124cbd 100644 --- a/python/pakfire/packages/make.py +++ b/python/pakfire/packages/make.py @@ -222,12 +222,9 @@ class Makefile(MakefileBase): def dist(self, resultdirs): """ Create a source package. - - We assume that all required files are in /build. """ - #dump = self.dump() - #for line in dump.splitlines(): - # logging.info(line) + # Download all files we need for this package. + self.download() p = packager.SourcePackager(self.pakfire, self) p.run(resultdirs)