From 2bbff71109f76e1af99e43dba7bbadedadce51a3 Mon Sep 17 00:00:00 2001 From: Bruno da Silva de Oliveira Date: Mon, 25 Apr 2005 23:49:04 +0000 Subject: [PATCH] *** empty log message *** [SVN r28478] --- pyste/tests/test_all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyste/tests/test_all.py b/pyste/tests/test_all.py index e296d9bf..a3eeed17 100644 --- a/pyste/tests/test_all.py +++ b/pyste/tests/test_all.py @@ -16,7 +16,7 @@ import time if sys.platform == 'win32': includes = '-ID:/programming/libraries/boost-cvs/boost -ID:/Bin/Python/include' - build_pyste_cmd = 'python ../src/Pyste/pyste.py --cache-dir=cache %s ' % includes + build_pyste_cmd = 'python ../src/Pyste/pyste.py --pyste-ns=pyste --cache-dir=cache %s ' % includes compile_single_cmd = 'cl /nologo /GR /GX -c %s -I. ' % includes link_single_cmd = 'link /nologo /DLL '\ '/libpath:D:/programming/libraries/boost-cvs/lib /libpath:D:/Bin/Python/libs '\ @@ -29,7 +29,7 @@ if sys.platform == 'win32': elif sys.platform == 'linux2': build_pyste_cmd = 'python ../src/Pyste/pyste.py -I. ' - compile_single_cmd = 'g++ -shared -c -I. -I/usr/include/python2.2 ' + compile_single_cmd = 'g++ -shared -c -I. -I/usr/include/python2.4 ' link_single_cmd = 'g++ -shared -o _%s.so -lboost_python ' obj_ext = 'o'