* [PATCH] remove references to removed libflask from setup.py
@ 2012-02-08 13:40 Olaf Hering
0 siblings, 0 replies; only message in thread
From: Olaf Hering @ 2012-02-08 13:40 UTC (permalink / raw)
To: xen-devel
# HG changeset patch
# User Olaf Hering <olaf@aepfle.de>
# Date 1328707901 -3600
# Node ID b730f1f980bdc1edcebf7dbbbb5253ccafcd8c04
# Parent 3574f4d67843733ccaabab5f8ebb859c99d7314a
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 <olaf@aepfle.de>
diff -r 3574f4d67843 -r b730f1f980bd tools/python/setup.py
--- 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",
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-02-08 13:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-08 13:40 [PATCH] remove references to removed libflask from setup.py Olaf Hering
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).