From b33bcb024736158f6614e4207a691b13398842db Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 30 Sep 2011 18:36:44 +0200 Subject: [PATCH] Fix downloading source when creating source packages. --- python/pakfire/packages/make.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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) -- 2.39.5