# HG changeset patch # User ymh # Date 1336584531 -7200 # Node ID 04c71ec19b8036b9285c62985bd920e287aa14aa # Parent 1f4fd6aed2d011bbf3b21a993955bc2605cb9746 debug setup diff -r 1f4fd6aed2d0 -r 04c71ec19b80 src/ldt/setup.py --- a/src/ldt/setup.py Thu May 03 18:30:04 2012 +0200 +++ b/src/ldt/setup.py Wed May 09 19:28:51 2012 +0200 @@ -4,6 +4,7 @@ from distutils.command.install import INSTALL_SCHEMES import sys +print("hello 1") class osx_install_data(install_data): # On MacOS, the platform-specific lib dir is /System/Library/Framework/Python/.../ @@ -17,6 +18,7 @@ # install_data class uses ('install_data', 'install_dir') instead. self.set_undefined_options('install', ('install_lib', 'install_dir')) install_data.finalize_options(self) +print("hello 2") def fullsplit(path, result=None): """ @@ -32,7 +34,7 @@ return result return fullsplit(head, [tail] + result) - +print("hello 3") def launch_setup(script_name, script_args): if sys.platform == "darwin": cmdclasses = {'install_data': osx_install_data} @@ -118,8 +120,10 @@ if __name__ == "__main__": - + + print("hello 4") script_name = os.path.basename(sys.argv[0]) script_args = sys.argv[1:] - - launch_setup(script_name, script_args) \ No newline at end of file + print("hello 5") + launch_setup(script_name, script_args) + print("hello 6") \ No newline at end of file