From d7ee1f5383acc25010251a9943dcd2485d60452a Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Mon, 5 Mar 2007 18:54:26 +0000 Subject: Move ptsname module under tools/python. Signed-off-by: Keir Fraser --- tools/python/setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'tools/python/setup.py') diff --git a/tools/python/setup.py b/tools/python/setup.py index 7b25025d9d..11ef487203 100644 --- a/tools/python/setup.py +++ b/tools/python/setup.py @@ -44,7 +44,14 @@ acm = Extension("acm", libraries = libraries, sources = [ "xen/lowlevel/acm/acm.c" ]) -modules = [ xc, xs, acm ] +ptsname = Extension("ptsname", + extra_compile_args = extra_compile_args, + include_dirs = include_dirs + [ "ptsname" ], + library_dirs = library_dirs, + libraries = libraries, + sources = [ "ptsname/ptsname.c" ]) + +modules = [ xc, xs, acm, ptsname ] if os.uname()[0] == 'SunOS': modules.append(scf) -- cgit v1.2.3