From a992e6642606d0bcc8d09e4065451e8a1e9ffda7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Wed, 29 Jun 2005 22:28:47 +0000 Subject: [PATCH] =?UTF-8?q?env=20de=C4=9Ferlerini=20actions=20compile=20ed?= =?UTF-8?q?ilmeden=20tan=C4=B1mlamak=20gerekiyor...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pisi/build.py b/pisi/build.py index 1088d713..afcaa215 100644 --- a/pisi/build.py +++ b/pisi/build.py @@ -91,7 +91,8 @@ class PisiBuild: curDir = os.getcwd() locals = globals = {} - + # Set needed evironment variables for actions API + self.setEnvorinment() try: exec compile(self.actionScript , "error", "exec") in locals,globals except SyntaxError, e: @@ -99,8 +100,7 @@ class PisiBuild: return # Go to source directory self.gotoSrcDir(globals) - # Set needed evironment variables for actions API - self.setEnvorinment() + # Run configure, build and install phase self.configureSource(locals) self.buildSource(locals)