|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-API] [PATCH 7 of 7] HACK: Do not install some stuff which conflicts
# HG changeset patch
# User root@xxxxxxxxxxxxxxxxxxxxx
# Date 1290077186 18000
# Node ID 74b174ffed0167d7c1c5fe709176c43770cc9e13
# Parent 4e6556dc40d36822bddf8ebb55294762e3279f33
HACK: Do not install some stuff which conflicts with out-off-tree XCP versions
of the same.
blktap issue is resolved by proper XCP packaging of the hypervisor tools rather
than my rather ad-hoc approach.
ocaml namespacing issues need some more thought, as mentioned in the overall
introductory email.
Not-Signed-of-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
diff -r 4e6556dc40d3 -r 74b174ffed01 tools/Makefile
--- a/tools/Makefile Thu Nov 18 05:46:26 2010 -0500
+++ b/tools/Makefile Thu Nov 18 05:46:26 2010 -0500
@@ -21,8 +21,8 @@ SUBDIRS-$(VTPM_TOOLS) += vtpm
SUBDIRS-y += xenstat
SUBDIRS-$(CONFIG_Linux) += libaio
SUBDIRS-$(CONFIG_Linux) += memshr
-SUBDIRS-$(CONFIG_Linux) += blktap
-SUBDIRS-$(CONFIG_Linux) += blktap2
+#SUBDIRS-$(CONFIG_Linux) += blktap
+#SUBDIRS-$(CONFIG_Linux) += blktap2
SUBDIRS-$(CONFIG_NetBSD) += libaio
SUBDIRS-$(CONFIG_NetBSD) += blktap2
SUBDIRS-$(CONFIG_NetBSD) += xenbackendd
@@ -46,7 +46,7 @@ SUBDIRS-$(CONFIG_X86) += debugger/kdd
# These don't cross-compile
ifeq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH))
SUBDIRS-$(PYTHON_TOOLS) += python
-SUBDIRS-$(PYTHON_TOOLS) += pygrub
+#SUBDIRS-$(PYTHON_TOOLS) += pygrub
SUBDIRS-$(OCAML_TOOLS) += ocaml
endif
diff -r 4e6556dc40d3 -r 74b174ffed01 tools/blktap2/vhd/lib/Makefile
--- a/tools/blktap2/vhd/lib/Makefile Thu Nov 18 05:46:26 2010 -0500
+++ b/tools/blktap2/vhd/lib/Makefile Thu Nov 18 05:46:26 2010 -0500
@@ -63,9 +63,9 @@ libvhd.a: $(LIB-OBJS)
install: all
$(INSTALL_DIR) -p $(DESTDIR)$(INST-DIR)
- $(INSTALL_DATA) $(LIBVHD) $(DESTDIR)$(INST-DIR)
- ln -sf libvhd.so.$(LIBVHD-MAJOR).$(LIBVHD-MINOR)
$(DESTDIR)$(INST-DIR)/libvhd.so.$(LIBVHD-MAJOR)
- ln -sf libvhd.so.$(LIBVHD-MAJOR) $(DESTDIR)$(INST-DIR)/libvhd.so
+ #$(INSTALL_DATA) $(LIBVHD) $(DESTDIR)$(INST-DIR)
+ #ln -sf libvhd.so.$(LIBVHD-MAJOR).$(LIBVHD-MINOR)
$(DESTDIR)$(INST-DIR)/libvhd.so.$(LIBVHD-MAJOR)
+ #ln -sf libvhd.so.$(LIBVHD-MAJOR) $(DESTDIR)$(INST-DIR)/libvhd.so
clean:
rm -rf *.a *.so* *.o *~ $(DEPS) $(LIBVHD)
diff -r 4e6556dc40d3 -r 74b174ffed01 tools/ocaml/libs/log/Makefile
--- a/tools/ocaml/libs/log/Makefile Thu Nov 18 05:46:26 2010 -0500
+++ b/tools/ocaml/libs/log/Makefile Thu Nov 18 05:46:26 2010 -0500
@@ -32,9 +32,10 @@ syslog.mli : syslog.ml
.PHONY: install
install: $(LIBS) META
- mkdir -p $(OCAMLDESTDIR)
- ocamlfind remove -destdir $(OCAMLDESTDIR) log
- ocamlfind install -destdir $(OCAMLDESTDIR) -ldconf ignore log META
$(INTF) $(LIBS) *.a *.so *.cmx
+### XXX need resyncing with xen-api-libs
+# mkdir -p $(OCAMLDESTDIR)
+# ocamlfind remove -destdir $(OCAMLDESTDIR) log
+# ocamlfind install -destdir $(OCAMLDESTDIR) -ldconf ignore log META
$(INTF) $(LIBS) *.a *.so *.cmx
.PHONY: uninstall
uninstall:
_______________________________________________
xen-api mailing list
xen-api@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/mailman/listinfo/xen-api
|
|
|
|
|