From fd8b0df8e4bff3f39ca1103eee04fa9caad16e49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Thu, 16 Jun 2005 13:27:43 +0000 Subject: [PATCH] =?UTF-8?q?build=20i=C3=A7in=20gerekli=20fonksiyonlar?= =?UTF-8?q?=C4=B1=20=C3=A7a=C4=9F=C4=B1r=C4=B1yor=20olal=C4=B1m.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pisi/build.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pisi/build.py b/src/pisi/build.py index 48ca1b25..ac3bdca8 100644 --- a/src/pisi/build.py +++ b/src/pisi/build.py @@ -46,7 +46,7 @@ class PisiBuild: self.unpackArchive() ui.info(" unpacked (%s)\n" % self.ctx.build_work_dir()) - # applyPatches() + self.applyPatches() try: self.actionScript = open(os.path.dirname(self.ctx.pspecfile ) + '/' + 'actions').read() @@ -71,6 +71,9 @@ class PisiBuild: self.buildSource(locals) self.installSource(locals) + # after all, we are ready to build/prepare the packages + self.buildPackages() + def fetchArchive(self, percentHook=None): """fetch an archive and store to ctx.archives_dir() using fether.Fetcher"""