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)