From c15e8799eab113f28f343e68433b955ba7f77cbf Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Thu, 9 Feb 2012 06:12:30 -0800 Subject: tools/python: remove references to removed libflask from setup.py Build in SLES11 SP1/2 fails after libflask removal. > building 'flask' extension > error: ../../tools/flask/libflask/libflask.so: No such file or > directory > make[3]: *** [install] Error 1 > make[3]: Leaving directory > `/usr/src/packages/BUILD/xen-4.2.24701/non-dbg/tools/python' > make[2]: *** [subdir-install-python] Error 2 Signed-off-by: Olaf Hering Committed-by: Keir Fraser --- tools/python/setup.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'tools/python') diff --git a/tools/python/setup.py b/tools/python/setup.py index e9061c871b..1708721d00 100644 --- a/tools/python/setup.py +++ b/tools/python/setup.py @@ -45,12 +45,10 @@ process = Extension("process", flask = Extension("flask", extra_compile_args = extra_compile_args, - include_dirs = [ PATH_XEN, PATH_LIBXC, "xen/lowlevel/flask", - "../flask/libflask/include" ], - library_dirs = [ PATH_LIBXC, "../flask/libflask" ], + include_dirs = [ PATH_XEN, PATH_LIBXC, "xen/lowlevel/flask" ], + library_dirs = [ PATH_LIBXC ], libraries = [ "xenctrl" ], - depends = [ PATH_LIBXC + "/libxenctrl.so", - XEN_ROOT + "/tools/flask/libflask/libflask.so" ], + depends = [ PATH_LIBXC + "/libxenctrl.so" ], sources = [ "xen/lowlevel/flask/flask.c" ]) ptsname = Extension("ptsname", -- cgit v1.2.3