aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-03-21 14:52:27 +0000
committerIan Campbell <ian.campbell@citrix.com>2011-03-21 14:52:27 +0000
commitfe1bd05a4109bd3c2b77cf33ae9dda7d7290bf4c (patch)
tree794f0f56e27f5d8b71501cddc826bbe59ca79d61
parentfc5b92fffd6ffc5bc4c62f449c284f4522ecb13f (diff)
downloadxen-fe1bd05a4109bd3c2b77cf33ae9dda7d7290bf4c.tar.gz
xen-fe1bd05a4109bd3c2b77cf33ae9dda7d7290bf4c.tar.bz2
xen-fe1bd05a4109bd3c2b77cf33ae9dda7d7290bf4c.zip
xl: link against libxenctrl
As well as the indirect dependency (via libxl) the xl binary also uses libxenctrl directory (for xtl_createlogger_stdiostream etc) and therefore must link against the library directly too. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
-rw-r--r--tools/libxl/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile
index 62020ed31b..edacfd4101 100644
--- a/tools/libxl/Makefile
+++ b/tools/libxl/Makefile
@@ -24,7 +24,7 @@ LIBXL_LIBS = $(LDLIBS_libxenctrl) $(LDLIBS_libxenguest) $(LDLIBS_libxenstore) $(
LIBXLU_LIBS =
-CLIENT_LIBS = $(LDLIBS_libxenlight)
+CLIENT_LIBS = $(LDLIBS_libxenlight) $(LDLIBS_libxenctrl)
LIBXL_OBJS-y = osdeps.o libxl_paths.o libxl_bootloader.o flexarray.o
ifeq ($(LIBXL_BLKTAP),y)