From 1e7b2bd8b136eed440f36e83ccd40f638cad6a9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Wed, 15 Jun 2005 11:26:46 +0000 Subject: [PATCH] =?UTF-8?q?Buna=20art=C4=B1k=20gerek=20yok?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pisi/actionsapi/libbuild.py | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/pisi/actionsapi/libbuild.py diff --git a/src/pisi/actionsapi/libbuild.py b/src/pisi/actionsapi/libbuild.py deleted file mode 100644 index a1d64f73..00000000 --- a/src/pisi/actionsapi/libbuild.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -import os,sys -sys.path.append('..') -import config - -global package_name - -if __name__ == "__main__": - ''' WILLBE: Unpack module will pass the package name to action script ''' - package_name = 'popt-1.7' - ''' WILLBE: pisi-build call action script after entered the build directory ''' - - os.chdir( config.tmp_dir() + '/' + package_name + '/build' ) - - locals = globals = {} - exec compile( open( sys.argv[1] ).read(), "error", "exec" ) in locals,globals - locals['src_setup']() - locals['src_build']() - locals['src_install']()